Changing Admin Password
Has anyone used the kbox 1200 to change the admin password on workstations? I need to change it on approx 6000 machines... I believe net user will require admin rights to the workstation - will the agent act as system / admin (4500 of these are just users - not power users). Thanks for any input.
0 Comments
[ + ] Show comments
Answers (7)
Please log in to answer
Posted by:
chrisgrim
14 years ago
Posted by:
chrisgrim
14 years ago
Posted by:
afzal
14 years ago
You can change the local admin account password using Kbox Scripting module, using the following VB Script, further you can unmark the comment by deleting [ ' ] to send password as command line argument / parameters. currently this script will change the Local Administrator Password to 'abcd' [8|] , Plz check is before applying it on production environment.
strComputer = "."
'strPassWord = WScript.Arguments(0)
Set objUser = GetObject("WinNT://" & strComputer & "/Administrator")
objUser.SetPassword("abcd")
'objUser.SetPassword(strPassWord)
'Wscript.Echo "Completed"
strComputer = "."
'strPassWord = WScript.Arguments(0)
Set objUser = GetObject("WinNT://" & strComputer & "/Administrator")
objUser.SetPassword("abcd")
'objUser.SetPassword(strPassWord)
'Wscript.Echo "Completed"
Posted by:
mlathrop
14 years ago
We did this with our 1100 with a KBOX script. KBOX runs with Administrator rights. We run it as an offline script, set to run disconnected or logged off. You may not want to do it that way because the BAT file is copied local.
"On Success" add a step to run a BAT file "net user Administrator password" - change password to the desired password.
Select the machines and OS's you want to apply it to and a run schedule. We run it once per day.
"On Success" add a step to run a BAT file "net user Administrator password" - change password to the desired password.
Select the machines and OS's you want to apply it to and a run schedule. We run it once per day.
Posted by:
ustacp
14 years ago
Posted by:
airwolf
14 years ago
You can't use a wildcard, because you have to give it a value. For example, you can't browse to another system on your network by typing \\*, you have to give it a name like \\COMPUTERNAME. It should work with "." - this is supposed to run on the local system. You can try LOCALHOST or %COMPUTERNAME% (the variable for the machine name the VBS is running on).
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.