dustbuster
Programmer
- Dec 19, 2002
- 95
How can I create a new (local)limited user account in Windows XP Pro using scripting?
User: User1
Password: user1pass
User: User1
Password: user1pass
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
strComputer = "atl-ws-01"
Set colAccounts = GetObject("WinNT://" & strComputer & "")
Set objUser = colAccounts.Create("user", "Admin2")
objUser.SetPassword "09iu%4et"
objUser.SetInfo