Changing Administrator Account Credentials remotely
Results 1 to 3 of 3

Thread: Changing Administrator Account Credentials remotely

  1. #1
    Registered User BOB IROC's Avatar
    Join Date
    Jun 2003
    Location
    Lockport, IL
    Posts
    1,158

    Changing Administrator Account Credentials remotely

    Is there a way to remotely change the passwords on the administrator accounts on workstations in a network. I know I can do this one by one but I have over 1000 computers to do. It appears one of my schools techs did not follow instructions to rename the "Administrator" account to a different name and assign it a password. Instead he just created another User with Administrator priviledges and disabled the local Administrator account. Unfortunately even with the account disabled you can boot the computer up in safe mode and get in. At the very least I would like to add a password to all the local Administrator accounts until we can go around and re-image the computers properly. We had a student boot one of the computers in safe mode and get in with the administrator user and do some damage and now that the word is out that this can be done I am afraid more students will do the same.

    I thought there may be some way to push settings out using a registry key or something.
    At the source of every error which is blamed on the computer, you will find at least two human errors, including the error of blaming it on the computer.
    http://www.facebook.com/BlueLightningTechnicalServices

  2. #2
    Driver Terrier NooNoo's Avatar
    Join Date
    Dec 2000
    Location
    UK
    Posts
    31,824
    Package your registry changes into an msi then use group policy to push it

    Or create a login script...
    Never, ever approach a computer saying or even thinking "I will just do this quickly."

  3. #3
    Registered User CeeBee's Avatar
    Join Date
    Nov 2002
    Location
    USA
    Posts
    2,494
    Or run a script remotely with psexec:
    1. create a list of machines (machines.txt) one per line
    2. create a batch file changepass.bat:

    for /f %%i in (machines.txt) do psexec -u domain\administrator -p domainpassword -accepteula \\%%i cmd /c net user administrator newpassword >>c:\logfile.txt

    Of course you can refine this and log which machines were successful and which were not (ex powered off ) so you can target them later
    Protected by Glock. Don't mess with me!

Similar Threads

  1. Specifying User Credentials
    By Emerald-64 in forum Networking
    Replies: 9
    Last Post: January 20th, 2006, 04:31 AM
  2. Changing Boot screen in Windows Xp
    By Sempron in forum Windows XP
    Replies: 7
    Last Post: October 11th, 2005, 04:04 PM
  3. Script for changing smtp email addresses and Logon Names
    By mrl1te in forum Windows Server 2003 & Windows Home Server
    Replies: 1
    Last Post: March 30th, 2005, 12:28 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •