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

13 lines
301 B
Transact-SQL

/*
TSC 27.12.2023 Removed managmenent of login centralinfra\L-CP-GL-AP-ATLAS-SQL-WSVC1 (related to centralPharma domain, which doesn't exists anymore)
*/
USE [master]
GO
IF EXISTS(SELECT 1 FROM SYS.syslogins WHERE name = 'BUILTIN\Administrators')
BEGIN
DROP LOGIN [BUILTIN\Administrators]
END
GO