How can I determine the OS of a remote computer?
How can I determine the OS of a remote computer, given its computer name?
Solution 1:
You can use nmap
to probe the remote computer and based on it's responses to TCP packets (valid or invalid requests) nmap
can infer what operating system it is using.
This is not 100% accurate, but probably the best you can do in the general case.
If you're limiting yourself to Windows only and you have credentials of an administrator account on the remote machine, you can use this method instead.
View system properties
To perform this procedure on a remote computer, right-click Computer Management (Local), click Connect to another computer, select Another computer, and then type in the name of the remote computer. You can then follow the steps in this procedure, starting at step 2, and substituting Computer Management (remote computername) for Computer Management (Local). You must be a member of the Administrators group, or you must have been delegated the appropriate authority, on the computer that you specify for remote computername.
And further to this, if your computers are joined to a domain then you can look at the computer accounts in Active Directory. These should tell you about the machine.
Solution 2:
Using cmd (Command prompt in windows Vista, XP, etc)
systeminfo /s IP.ADDRESS /u UserOnRemotePc
eg:
systeminfo /s 172.16.23.108 /u Student
Solution 3:
Systeminfo command shows os name and service pack number. you can run this command on the remote computer using psexec.
Source: Find Windows Version from command line
Solution 4:
Given then information you have given, the answer is you can not determine a machine's OS by its name.