Hi guys,

if lets say I have a variety of different workgroups and domains.
And I need to reset the password of each individual machine's local admin a/c,
can I do something like this?

Set objDSO = GetObject("WinNT:")
Set objUser = objDSO.OpenDSOObject _
("computername", "userid", "currentpassword")
objUser.SetPassword("newpassword")

In the above, will I be able to connect to each individual machine with the
correct credentials and reset the password?