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
This By Request VBS script will allow you to open the Microsoft System Information applet on a remote