Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Prompt for a Computer Name and Then Delete That Computer Account From Active DirectoryContent of Prompt for a Computer Name and Then Delete That Computer Account From Active Directory.vbsMD5 Hash: 2FE9B37A894765B2DE8B67F69E1C12F1 |
||
Const ADS_SCOPE_SUBTREE = 2
strComputer = InputBox("Please enter the computer name:", "Delete Computer Account") If strComputer = "" Then Wscript.Quit End If Set objConnection = CreateObject("ADODB.Connection") Set objCommand = CreateObject("ADODB.Command") objConnection.Provider = "ADsDSOObject" objConnection.Open "Active Directory Provider" Set objCommand.ActiveConnection = objConnection objCommand.CommandText = "Select ADsPath From " & _ "'LDAP://DC=fabrikam,DC=com' Where objectClass='computer'" & _ " and Name = '" & strComputer & "'" objCommand.Properties("Page Size") = 1000 objCommand.Properties("Searchscope") = ADS_SCOPE_SUBTREE Set objRecordSet = objCommand.Execute objRecordSet.MoveFirst Do Until objRecordSet.EOF Set objComputer = GetObject(objRecordSet.Fields("ADsPath").Value) objComputer.DeleteObject (0) objRecordSet.MoveNext Loop | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |