Difference between revisions of "How to discover the user logged in a remote workstation"

From Tech-Wiki
Jump to: navigation, search
 
Line 1: Line 1:
 
[[Category:Microsoft]]
 
[[Category:Microsoft]]
 +
'''[[Microsoft#Misc|Back to Misc]]'''
 +
  
 
This VBScript will connect to the remote workstation using WMI and query which user is logged on.
 
This VBScript will connect to the remote workstation using WMI and query which user is logged on.

Latest revision as of 10:20, 24 August 2016

Back to Misc


This VBScript will connect to the remote workstation using WMI and query which user is logged on.

strComputer=InputBox("Nome or computer IP address")
'WScript.echo "Hostname: " &strComputer
'WScript.echo "Checking..."
Set objWMIService = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") 

Set colComputer = objWMIService.ExecQuery _
    ("Select * from Win32_ComputerSystem")
 
For Each objComputer in colComputer
    Wscript.Echo "Usuário =" &objComputer.UserName
Next