VBS AD – Benutzer deaktivieren

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

Weiterlesen

Powershell AD – Objekte wiederherstellen Papierkorb

AD Objekte wiederherstellen Papierkorb aktivieren: Enable-ADOptionalFeature –Identity “CN=Recycle Bin Feature,CN=Optional Features,CN=Directory Service,CN=Windows NT,CN=Services,CN=Configuration,DC=domain,DC=com” –Scope ForestOrConfigurationSet –Target easycash.de Objekte wiederherstellen: Import-Module activedirectory Get-ADObject -filter * –IncludeDeletedObjects

Weiterlesen