Kaseya Server requiere que CLR esté habilitado en SQL Server.
Si todavía no está habilitado, ejecute la siguiente consulta dentro de SQL Server Management Studio (SSMS):
EXEC sp_configure 'show advanced options' , '1';
go
reconfigure;
go
EXEC sp_configure 'clr enabled' , '1'
go
reconfigure;
-- Turn advanced options back off
EXEC sp_configure 'show advanced options' , '0';
go