Tag: AD Users

EnumerateUsersByOU.vbs

‘========================================================================= ‘ EnumerateUsersByOU.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: Pass the ADsPath or Dinstinguished Name of the Container/Organizational ‘ Unit to the Function, and it’ll return all of the Users Within. ‘ EXAMPLE: strUserPath = “LDAP://CN=Users,DC=domain,DC=com” ‘ strUserPath = “CN=Users,DC=domain,DC=com” ‘========================================================================= Option Explicit …

Continue reading

ListUserForwardTo.vbs

‘========================================================================= ‘ ListUserForwardTo.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: In AD the altRecipient Attribute aka Forward To, is the Email ‘ Address a User’s Email Forwards to. ‘ Pass the ADsPath or Dinstinguised Name of the User or ‘ Container/Organizational Unit to the …

Continue reading

ModifyUserForwardTo.vbs

‘========================================================================= ‘ ModifyUserForwardTo.vbs ‘ VERSION: 1.0 ‘ AUTHOR: Brian Steinmeyer ‘ EMAIL: [email protected] ‘ WEB: https://sigkillit.com ‘ DATE: 1/1/2011 ‘ COMMENTS: In AD the altRecipient Attribute aka Forward To, is the Email ‘ Address a User’s Email Forwards to. ‘ ‘ strUserPath: ADsPath or distinguishedName of the User You Want to Modify the ‘ Email …

Continue reading