I need do something like this code
strUser = "myUser"
strComputer = "myremoteComuter"
strPassword = "myPassword_"
Set objUser = GetObject("WinNT://" & strComputer & "/" & strUser & ",user",strUser,strPassword)
If Err.Number = 0 Then
objUser.AccountDisabled = true
objUser.SetInfo
End If
But there is not such methods GetObject that takes 3 parameters.
I have found a snip of code: