Files
sql-scripts/TPDT-268 - ACP in task sequence/3_Execute_CLR.sql
2024-03-07 16:52:14 +01:00

11 lines
432 B
Transact-SQL

exec master.dbo.sp_configure 'show advanced option', 1;
RECONFIGURE WITH OVERRIDE
exec master.dbo.sp_configure 'Ad Hoc Distributed Queries',1
exec master.dbo.sp_configure 'xp_cmdshell',1
exec master.dbo.sp_configure 'clr enabled',1
exec master.dbo.sp_configure 'Database Mail XPs',1
exec master.dbo.sp_configure 'show advanced option', 0;
RECONFIGURE WITH OVERRIDE
EXECUTE [HCITools].[dbo].[apssys_CLR_Triapharm_Database_Tools]
GO