Posts Tagged 'Active Directory'

Working with AD Groups

Keep Reading ...

This is a collection of scripts and snippets for working Active Directory

Adding 1,000 Users to a Security Group
Demonstration script that creates a security group named Group1, and adds one thousand users (UserNo1 through UserNo10000) to that group. This script is not intended for use in a production environment.
1234567891011121314Const ADS_PROPERTY_APPEND = 3
Set objRootDSE = GetObject("LDAP://rootDSE")
Set objContainer [...]