I need to create a .VBS script to reset the Windows local administrator password on a large group of computers. My problem is that some of our sites have renamed the administrator account for security reasons. Does anyone have a script which changes the password of the administrator account based on the SID of the original Administrator account?
feedback
|
|
Using the fact that local admin's SID always ends with -500:
| ||||
|
feedback
|
|
There's a tool floating around somewhere called LookupAccountName (with source!) that given the SID of the builtin adminitrator will give you its name. You're probably going to end up writing C++ code to pull this one off reasonably well. | |||
|
feedback
|
|
Like Joshua says, I don't think you can do this with windows scripting host only, you could use it download something and execute it:
| ||||
|
feedback
|
|
@DmitryK's answer is good, and I didn't know any of that stuff. But I do know that this sort of thing is usually cleaner in PowerShell, so I ported it. For example, the whole
$adminName = (gwmi win32_account | ? { $.SID.StartsWith( 'S-1-5-' ) -and $.SID.EndsWith( '-500' ) }).Name
(Add the The rest becomes: $user = ([ADSI]"WinNT://$($env:COMPUTERNAME)/$adminName,User") $user.SetPassword( 'xxx' ) $user.SetInfo() (applying the appropriate computer name as needed, of course.) | |||
|
feedback
|
protected by Bill the Lizard♦ Aug 30 '10 at 1:06
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.