Let's say that you have a script that does a task, say for example a script to create an account in Active Directory. That script would look like this: Set objOU = GetObject("LDAP://OU=myOrganizationalUnit,dc=MyDomain,dc=com") Set objUser = objOU.Create("User", "cn=Test User") objUser.Put "sAMAccountName...