VBS Script To Retrieve System Information For A Remote Machine Using MsInfo32

 

This By Request VBS script will allow you to enter a remote machine name into an input dialog box and will return system information about the remote machine. The script will open the system information application (MsInfo32) for the machine.

 

VBS Script:

 

strComputer = InputBox ("Enter Machine Name")

 

Set oShell = CreateObject("Wscript.Shell")

oShell.Run "MsInfo32.Exe /Categories +SystemSummary /Computer " & strComputer

 

Published Sunday, August 26, 2007 11:48 AM by dhite
Filed under:

Comments

# VBS Script To Open Microsoft System Information Applet On A Remote Machine

This By Request VBS script will allow you to open the Microsoft System Information applet on a remote

Sunday, April 06, 2008 8:49 AM by Don Hite