Benutzer per VBS Skript deaktivieren
Const ADS_UF_ACCOUNTDISABLE = 2
Set objUser = GetObject _
(“LDAP://CN=Test5,OU=Users,OU=Test,OU=Konfiguration,DC=NDSEDV,DC=DE”)
intUAC = objUser.Get(“userAccountControl”)
objUser.Put “userAccountControl”, intUAC OR ADS_UF_ACCOUNTDISABLE
objUser.SetInfo