Get windows' version remotely

  • Thread starter Thread starter Raymond Yung
  • Start date Start date
R

Raymond Yung

I need to get the version number on a list of PC on my
network.

Is there any tools or scripts I can use?

Thank you.

Raymond Yung
 
Open a Command Prompt window and enter:

SYSTEMINFO /?

This will give you a list of command line options. An example would be:

SYSTEMINFO /S \\computer#1 /FO CSV \\Computer1 >
C:\MyFiles\Computer1_sysinfo.txt

This would run SystemInfo against Computer1 and automatically create a text
file in C:\MyFiles (assuming the folder exists) containing the info from
that computer.

You could use this structure in a BAT file or VBS script, if you have a list
of the computer names you need to scan.
 
Back
Top