I have setup a script to query AD for everything that is a Computer Object.
I am then taking that list and connecting to each workstation so that I can
change the Local Admin Password. The query is at about 1500 workstations.
Set objWMIService = GetObject("winmgmts:\\" & arrWorkstations(j) &
"\root\cimv2")
Since some machines are turned off, as well as some machine do not exist
anymore, any machine that I cannot connect to is written to a file to
chorten my next attempt.
Where I am having trouble is that I'm not sure how to to connect to the
workstation and bind to the local admin account so I can reset the password.
Thanks.
Bart