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
 
Raymond Yung said:
I need to get the version number on a list of PC on my
network.

Is there any tools or scripts I can use?

RUN
winver
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top