I have used the script below successfully to create a user, is there a way to have the script make the user a member of the Administrators group when creating the account?
strComputer = "."
Set colAccounts = GetObject("WinNT://" & strComputer & "")
Set objUser = colAccounts.Create("user", "USERNAME")
objUser.SetPassword "password"
objUser.SetInfo
strComputer = "."
Set colAccounts = GetObject("WinNT://" & strComputer & "")
Set objUser = colAccounts.Create("user", "USERNAME")
objUser.SetPassword "password"
objUser.SetInfo