Which Windows 8.1 edition am I running

15

1

There are several editions of Windows 8.1: Enterprise, Pro etc. I wan't to make sure, I am running correct edition.

When I go to PC info, I see Edition: Windows 8.1.
How can I figure out which version am I running?

Andrei

Posted 11 years ago

Reputation: 253

1If it does not say Single Language nor Professional nor Media Center when you hit properties on My PC then your running Windows 8 which is known as Windows 8 Core the same applies to 8.1 – Ramhound – 11 years ago

Answers

21

In the Run window (Win+R) type: cmd /c "slmgr /dli"

You should see something like this:

Name: Windows(R) BLAH edition
Description: Windows(R) Operating System, BLAH channel
...
License status: Licensed

Alternative Solution

You can also use WMI to query the OS information using this command:

wmic os get Caption, Version, OperatingSystemSKU, OSProductSuite

You should see something like this:

Caption                                OperatingSystemSKU  OSProductSuite  Version
Microsoft Windows 8.1 Single Language  100                 768             6.3.9600

OS SKU codes are explained here and here. 100 (0x64) stands for PRODUCT_CORE_SINGLELANGUAGE

OSProductSuite codes are explained here. 768 (0x300) = 512 (0x200) + 256 (0x100)
This means Windows Home Edition is installed and Terminal Services is installed, but only one interactive session is supported.

Vinayak

Posted 11 years ago

Reputation: 9 310

2Thanks for your answer. I see "Core edition" does it means that I cannot enable Hyper-V on it? – Andrei – 11 years ago

No. Hyper-V is only available for Windows 8 Pro and Enterprise versions.

– Vinayak – 11 years ago

@Vinayak, Technically isn't it just a software issue? Shouldn't there be a way around this limitation, like a patch or fix we can apply or something? – Pacerier – 10 years ago

@Pacerier You can download Hyper-V Server 2012 for free. Read more about it here

– Vinayak – 10 years ago

winver is a lot easier to type compared to cmd /c "slmgr /dli" :) – None – 10 years ago

@Rocky winver doesn't tell you what edition of Windows you are running – Vinayak – 10 years ago

1@vinayak It's right below the copyright date on Windows 8. Up at the top in Windows 7 and earlier. – None – 10 years ago

@Rocky Oh yeah, I totally missed that. My bad. – Vinayak – 10 years ago

@Vinayak, Weird, why is there free official installation now for Windows 8 non-Pro? – Pacerier – 10 years ago

@Pacerier what do you mean "free"? – Vinayak – 10 years ago

@Vinayak, We candownload Hyper-V Server 2012 R2 for free. – Pacerier – 10 years ago

@Pacerier I haven't downloaded it so I can't say what's it's like but from the article I read, it's supposed to be a standalone version of Hyper-V – Vinayak – 10 years ago

@Vinayak, Exactly, they are giving us free download of Hyper-V when it's supposed to be charged. (Availability of Hyper-V is one of the differences between Win 8.1 Core vs Win 8.1 Pro.)

– Pacerier – 10 years ago

@Pacerier This article might answer that question.

– Vinayak – 10 years ago

5

With PowerShell

(Get-WmiObject -Class Win32_OperatingSystem).Caption

To start PowerShell, hit Win + R (to open Run utility), type in powershell and hit enter.

StupidOne

Posted 11 years ago

Reputation: 409

3

Open the command line (right click on window, then select Run), type systeminfo.exe and press Enter.

Ryan

Posted 11 years ago

Reputation: 31

2

In the Run window (Win+R) type:

msinfo32.exe

This will give the user a very detailed system summary of hardware resources, components and software environment. On the System Summary page, the first field OS Name will identify the version and variant of the OS, such as Microsoft Windows 8 Pro

Gary

Posted 11 years ago

Reputation: 21

0

You can use the ver command. There might be some variants I am not aware of. It should print the version of your and / or the version of the command processor.

There are keys in registry in bottom that hold the value of the Ver.

Uncreative Name

Posted 11 years ago

Reputation: 64