Pete2k Asked: 2011-04-02 10:57:56 +0800 CST2011-04-02 10:57:56 +0800 CST 2011-04-02 10:57:56 +0800 CST How do I tell if Im on Server 2003 R2? 772 Just wondering how I tell I was sure I installed a VM with R2 but it doesnt say. windows-server-2003 4 Answers Voted squillman 2011-04-02T11:03:40+08:002011-04-02T11:03:40+08:00 Where did you look? Right-click My Computer and get Properties. It should give you the precise edition. John 2011-04-02T12:25:59+08:002011-04-02T12:25:59+08:00 Click start then run and type WINVER and hit enter. It will tell you if it is R2. jftuga 2011-04-02T11:03:30+08:002011-04-02T11:03:30+08:00 Start -> Run -> winver.exe from within Windows or click on the Summary tab in the vSphere client to see what you selected (but not necessarily what is installed) Daniel Richnak 2011-04-02T12:41:24+08:002011-04-02T12:41:24+08:00 If you're looking for a programmatic way to do it, you can use PowerShell and WMI to get the same string as in My Computer -> Properties... powershell -command "$str = (gwmi win32_operatingsystem).name; $str -like '*R2*'" (True if R2, false if not R2)
Where did you look? Right-click My Computer and get Properties. It should give you the precise edition.
Click start then run and type WINVER and hit enter. It will tell you if it is R2.
Start -> Run -> winver.exe from within Windows or click on the Summary tab in the vSphere client to see what you selected (but not necessarily what is installed)
If you're looking for a programmatic way to do it, you can use PowerShell and WMI to get the same string as in My Computer -> Properties...
(True if R2, false if not R2)