Hello,
Trying to clear the office field in the user account properties in AD. Since I have about 400 users I started with the script to clear one account and am trying to iterate through all the accounts by using the dictionary object, however, I'm getting an error in line 13:
VScript runtime error: Object required: 'objUser'
Any help would be appreciated thanks.
Trying to clear the office field in the user account properties in AD. Since I have about 400 users I started with the script to clear one account and am trying to iterate through all the accounts by using the dictionary object, however, I'm getting an error in line 13:
VScript runtime error: Object required: 'objUser'
Any help would be appreciated thanks.
Code:
Const ADS_PROPERTY_CLEAR = 1
Dim objDictionary, objOU, ObjUser, ObjItem
Set objDictionary = CreateObject("Scripting.Dictionary")
i = 0
Set objOU = GetObject("LDAP://OU=Users-Test-Scripts, OU=Users-ALL, DC=microsoft, DC=com")
objOU.Filter = Array("User")
For Each objUser In objOU
objDictionary.Add i, objUser.CN
i = i + 1
Next
For Each objItem in objDictionary
objUser.PutEx ADS_PROPERTY_CLEAR, "physicalDeliveryOfficeName", 0
objUser.SetInfo
Next