Skip to content
Winsides.com

Windows Insides

Winsides.com

Windows Insides

  • Windows 11
  • Windows Features
  • Windows Security
  • Microsoft
    • Microsoft Copilot
    • Microsoft Powertoys
  • Shortcuts
    • Windows Shortcuts
    • Desktop Shortcuts
  • Video Tutorials
  • About
    • What’s New?!
    • About us
    • Contact us
    • Privacy Policy
    • Terms of Use
  • Follow us
    • Reddit
    • Dev.to
    • YouTube
    • Linked In
    • X
    • Tumblr
    • Facebook
    • Instagram
    • Buy Me A Coffee
  • Windows 11
  • Windows Features
  • Windows Security
  • Microsoft
    • Microsoft Copilot
    • Microsoft Powertoys
  • Shortcuts
    • Windows Shortcuts
    • Desktop Shortcuts
  • Video Tutorials
  • About
    • What’s New?!
    • About us
    • Contact us
    • Privacy Policy
    • Terms of Use
  • Follow us
    • Reddit
    • Dev.to
    • YouTube
    • Linked In
    • X
    • Tumblr
    • Facebook
    • Instagram
    • Buy Me A Coffee
Close

Search

Winsides.com

Windows Insides

Winsides.com

Windows Insides

  • Windows 11
  • Windows Features
  • Windows Security
  • Microsoft
    • Microsoft Copilot
    • Microsoft Powertoys
  • Shortcuts
    • Windows Shortcuts
    • Desktop Shortcuts
  • Video Tutorials
  • About
    • What’s New?!
    • About us
    • Contact us
    • Privacy Policy
    • Terms of Use
  • Follow us
    • Reddit
    • Dev.to
    • YouTube
    • Linked In
    • X
    • Tumblr
    • Facebook
    • Instagram
    • Buy Me A Coffee
  • Windows 11
  • Windows Features
  • Windows Security
  • Microsoft
    • Microsoft Copilot
    • Microsoft Powertoys
  • Shortcuts
    • Windows Shortcuts
    • Desktop Shortcuts
  • Video Tutorials
  • About
    • What’s New?!
    • About us
    • Contact us
    • Privacy Policy
    • Terms of Use
  • Follow us
    • Reddit
    • Dev.to
    • YouTube
    • Linked In
    • X
    • Tumblr
    • Facebook
    • Instagram
    • Buy Me A Coffee
Close

Search

Home/Windows 11/How To?/How to Check Installed Windows 11 Edition?

How to Check Installed Windows 11 Edition?

Narendhiran Vijayakumar
By Narendhiran Vijaykumar
September 20, 2024 6 Min Read
0

Hello friends, it’s been a while! I’m back with a new tutorial. Microsoft launched Windows 11 a few years ago, and it comes in several editions such as Windows 11 Home, Windows 11 Pro, Windows 11 Pro for Workstations, Windows 11 Enterprise, Windows 11 SE for Education, Windows 11 Education, and Windows 11 in S Mode. Knowing which edition of Windows 11 is installed on your PC helps you understand the features available to you. In this article, I’ll guide you through the steps to check which Windows 11 edition is installed on your PC.

Quick Steps: Using Settings App

  • Use the Keyboard Shortcut Winkey + I to launch the settings app.
  • Choose the System option from the left menu.
  • Scroll down to last and click the About option.
  • Under the Windows specifications, you can find the installed Windows 11 edition on your pc.

Method 1: Using winver on Run Window:

  • Firstly, you need to open the Run Command Window using the keyboard shortcut Winkey + R.
  • Once the Run window appears, enter the following command winver or winver.exe and hit the Enter button to launch the About Windows Window on your screen.
Using Winver command on Run Window
Using Winver command on Run Window
  • In the “About Windows” popup window, the edition is mentioned below the Microsoft Windows version.
The Installed Windows 11 Edition is highlighted in About Windows option
The Installed Windows 11 Edition is highlighted in About Windows option
  • In the image above, you can see the installed Windows 11 edition on your PC. My PC is running Windows 11 Home Single Language OS.

This is the quickest and easiest method to find out the installed edition of your Windows 11 pc.

Method 2: Using System Information on Run Window:

  • Firstly, you need to open the Run Command Window using the keyboard shortcut Winkey + R.
  • Once the Run window appears, enter the following command msinfo32 and hit the Enter button to launch the System Information Window on your screen.
Using msinfo32 command on Run Window
Using msinfo32 command on Run Window
  • In the System Information window, under the System Summary, you can see the installed Windows 11 edition on your PC. The OS details are the first piece of information you can find in this System Information window.
Finding Windows edition from System Information Window
Finding Windows edition from System Information Window
  • In the image above, you can see that the Windows 11 edition is displayed under the “OS Name” item along with its value.

Method 3: Using dxdiag command on Run Window:

  • Firstly, you need to open the Run Command Window using the keyboard shortcut Winkey + R.
  • Once the Run window appears, enter the following command dxdiag and hit the Enter button to launch the DirectX Diagnostic Window on your screen.
Using dxdiag command on Run Window
Using dxdiag command on Run Window
  • By running the command will launch the DirectX Diagnostic tool Window, In that under the System Information, you can find the edition under Operating System option.
Finding Windows 11OS Edition using DirectX Diagnostic Tool
Finding Windows 11OS Edition using DirectX Diagnostic Tool

That’s it! The methods mentioned above are the easiest ways to find the installed Windows 11 edition. However, if you’re interested in trying some more advanced methods, you can use Command Prompt or PowerShell. To do so, follow the steps below.

Method 4a: Using systeminfo command on Command Prompt:

  • Click the Start Menu and search for Command Prompt
  • You need to choose the “Run as Administrator” option to launch the command prompt in admin mode.
Open Command Prompt using Run as Administrator
Open Command Prompt using Run as Administrator
  • Now you need to copy the command systeminfo | findstr /B /C:"OS Name"
  • Paste the command and execute the command to display your installed windows 11 os specifications.
Using the systeminfo windows command to display os specifications.
Using the systeminfo windows command to display os specifications.
  • Right away the systeminfo command directly display the current installed Window 11 edition on your pc.

Method 4b: Using slmgr command on Command Prompt:

  • Click the Start Menu and search for Command Prompt
  • You need to choose the “Run as Administrator” option to launch the command prompt in admin mode.
Open Command Prompt using Run as Administrator
Open Command Prompt using Run as Administrator
  • Now you need to copy, paste and execute the command slmgr /dli in windows command prompt.
  • Executing the command will pop-up window will display your Windows 11 edition.
using Software Licensing Management Tool command to display os editions details
using Software Licensing Management Tool command to display os editions details

Command Explanation:

  • slmgr: This stands for Software Licensing Management Tool, a built-in Windows command-line utility used to manage and report Windows license information. It helps with tasks like managing product keys, activation, and license status.
  • /dli: This switch stands for Display License Information. It shows basic details about the Windows activation and license status.

Method 5a: Using Get-ComputerInfo PowerShell Commands:

  • Click the Start Menu and search for PowerShell
  • You need to choose the “Run as Administrator” option to launch the powershell in admin mode.
Opening PowerShell as Admin Mode
Opening PowerShell as Admin Mode
  • Now you need to execute the following command: Get-ComputerInfo | Select WindowsVersion, WindowsEditionId
  • The above command will display the Windows 11 Edition name in the powershell without any other details.
Get-ComputerInfo powershell command to display Windows 11 Edition
Get-ComputerInfo powershell command to display Windows 11 Edition

Command Explanation:

When you run Get-ComputerInfo | Select WindowsVersion, WindowsEditionId, you are:

  1. Running Get-ComputerInfo: This retrieves a lot of information about your system.
  2. Using Select: This narrows down the output to just two properties: WindowsVersion (the version/build number) and WindowsEditionId (the edition of Windows you have installed).

Method 5b: Using Get-WmiObject PowerShell Commands:

  • Click the Start Menu and search for PowerShell
  • You need to choose the “Run as Administrator” option to launch the powershell in admin mode.
Opening PowerShell as Admin Mode
Opening PowerShell as Admin Mode
  • Now you need to execute the following command: Get-WmiObject -Class Win32_OperatingSystem | Select-Object Caption
  • The above command displays the current os name along with its edition without any unwanted information.
Get-WmiObject powershell command to display Windows 11 Edition
Get-WmiObject powershell command to display Windows 11 Edition

Command Explanation:

This command simply queries the Win32_OperatingSystem WMI class to gather information about the operating system. It filters the output to show only the Caption property, which includes the name and edition of the installed operating system.

That’s it, these are the 5+ multiple methods to find out your Installed Windows 11 OS on your pc.

Take Away:

I hope this tutorial helped you find out which edition of Windows 11 is installed on your PC. Knowing your Windows version is useful for understanding the features available to you. If you have any questions or need further help, feel free to ask. Thanks for reading! Find more interesting tutorials on our homepage WinSides.com.

Read More:

  • How to Show Seconds in System Tray Clock Windows 11?
  • How to Install and Run X Server in Windows 11?

Tags:

How toTipsTutorialswindows 11
Narendhiran Vijayakumar
Author

Narendhiran Vijaykumar

I Am a Frontend Developer, and Business Creator With Over 8 Years of Experience in Php and Frontend Web Development. I Have Over 15 Years of Experience Using Windows Os, From Windows Xp to Windows 11, and Possess Sound Knowledge in Using and Solving Real-time Problems. I Am Getting Proficient in Ai-based Technologies and Have Developed 3 Successful Web Apps and Saas Platforms.

Follow Me
Other Articles
Create Device Manager Desktop Shortcut in Windows 11
Previous

Create Device Manager Shortcut in Windows 11

How to Restart File Explorer.Exe in Windows 11
Next

How to Restart File Explorer.Exe in Windows 11?

No Comment! Be the first one.

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

  • How to Run Group Policy Editor as Administrator on Windows 11?
  • Easy Way to Enable Windows Subsystem for Linux in Windows 11
  • Enable Windows Subsystem for Linux (WSL 2) using Command Prompt & PowerShell
  • Enable IIS Management Console in Windows 11 [GUI]
  • Quick Steps to Enable Core Isolation in Windows 11
  1. Vigneshwaran Vijayakumar
    Vigneshwaran Vijayakumar on How to Enable Windows PowerShell 2.0 in Windows 11?October 5, 2025

    Hello Mr. Mohamad El-Kheir, Thank you for contacting us. Microsoft has removed PowerShell version 2.0 completely from Windows 11 24H2…

  2. Avatar of Mohamad El-Kheir
    Mohamad El-Kheir on How to Enable Windows PowerShell 2.0 in Windows 11?October 5, 2025

    i have a MSI laptop with windows 11 Home Installed on it. how to install powershell v2.0 on it

  3. Vigneshwaran Vijayakumar
    Vigneshwaran Vijayakumar on DxDiag Windows 11 – What is it & How to use it for Troubleshooting?August 14, 2025

    Hey Myla Shannon Thank you for your valuable feedback. We are delighted to hear your compliment and excited to know…

  4. Avatar of Myla Shannon
    Myla Shannon on DxDiag Windows 11 – What is it & How to use it for Troubleshooting?August 14, 2025

    This content is incredibly informative.

  5. Avatar of seven
    seven on How to Enable IIS [Internet Information Services] in Windows 11?July 29, 2025

    I found this post very helpful.

  • About us
  • What’s New?!
  • Guest Posts on Winsides.com – Terms and Conditions
  • Publication Sitemap
  • Careers
  • Authors
  • Why Trust Winsides.com?
  • Content Removal Request
  • Terms of Use
  • Disclaimer
  • Contact us
Copyright 2024-2026 - Winsides.com. All rights reserved.