Main Topics
Browse All TopicsI have a text file that has computer names
I need a Script that will run against each computer and reset the Local administrator passworf of each computer.
I would like to make sure that the password has been changed for each computer.
Any help?
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Ref this link before you run the script..
http://www.visualbasicscri
I create a text file and put a list of computers
I downloaded PStools from http://technet.microsoft.c
then extracted the files to a folder in my c: drive then from command prompt I went to the folder I extracted the pstools files to and run the following command
pspasswd.exe @c:\computerlist.txt administrator mynewpassword
It worked fine.
Business Accounts
Answer for Membership
by: sk_raja_rajaPosted on 2008-04-11 at 09:39:15ID: 21335811
Error Resume Next leSystemOb ject") ("./Rezult .log")
Set file_object = CreateObject("Scripting.Fi
Set list = file_object.CreateTextFile
domain = "My_domain" '********
Set container_comp = GetObject("WinNT://" & domain)
container_comp.Filter = Array("Computer")
For Each comp In container_comp
comp_in_domain = comp.Name
Set container_user = GetObject("WinNT://" & my_domain & "\" & comp_in_domain)
container_user.Filter = Array("User") ' Good
For Each user In container_user
If user.Name="Administrator" Then
list.Write comp_in_domain & " ---"& user.Name & vbCrLf
user.SetPassword = "PASSWORD"
End If
Next
Set container_user = Nothing
Next
list.Close
WScript.Quit(0) ' Exit
All that you need in 4-th line to write a NetBIOS-name of your domain, save this file with a name "*****.vbs". Then - double click the mouse