● UK tech experts · info@vividrepairs.co.uk
Vivid Repairs
A Windows 11 laptop on a modern desk showing the About Windows winver dialog box with version and build number details
Fix It Yourself · Troubleshooting

check Windows version

Published 25 September 202612 min read
As an Amazon Associate, we may earn from qualifying purchases. Our ranking is independent.

You know that moment when someone asks which Windows you're running and you genuinely have no idea? Happens all the time. The thing is, checking your Windows version takes about ten seconds once you know where to look, and yet half the internet makes it sound like a project. This guide cuts through all of that. Whether you need to check Windows version for a software install, a support call, or just pure curiosity, you'll have your answer before you finish reading this paragraph.

Why It's Hard to Check Windows Version Just by Looking

Here's the thing: Windows doesn't plaster the version number on the desktop by default. You see your wallpaper, your taskbar, maybe a few icons. That's it. So it's completely normal to sit in front of a PC and have absolutely no idea whether you're on Windows 10, Windows 11, or something in between.

But the visual confusion goes deeper than that. Microsoft separates your OS identity into several different fields, and people mix them up constantly. There's the edition (Home, Pro, Enterprise, Education), the version (like 22H2 or 23H2, which refers to the feature update release), and the OS build number (a longer number like 22631.3880 that pinpoints the exact patch level). These are all different things. A software installer might ask for your Windows version, a driver might need your OS build, and a support technician might ask for your edition. Knowing which field to look at matters.

OEM machines make this worse. Manufacturers like Dell, HP, and Lenovo often customise the Windows interface, add their own software, and sometimes change how the system screens look. A Dell laptop running Windows 11 Home might look nothing like a clean Microsoft install. The version number is still there, it's just buried. And if the PC has been upgraded from Windows 10 to Windows 11 at some point, the appearance might be a mix of both, which trips people up constantly.

Insider Preview builds add another layer of confusion. Microsoft's Windows Insider programme lets users run pre-release versions of Windows, and these can look significantly different from the stable release. The version string in winver will usually say something like "Insider Preview" but unless you know to look there, you'd never guess from the desktop alone.

The bottom line: don't try to guess your Windows version from how it looks. Use the tools below. They take seconds and give you the exact answer every time.

Quick routeStart here

Check Windows Version: The Quick Fix with winver

1

Use the winver Command Easy

  1. Open the Run dialog
    Press Windows + R on your keyboard. A small Run box appears in the bottom-left corner of your screen.
  2. Type winver and press Enter
    Type winver (no spaces, no capitals needed) and press Enter. The About Windows dialog opens immediately.
  3. Read your version details
    The box shows your Windows edition at the top (for example, Windows 11 Pro), the version number on the next line (for example, Version 23H2), and the OS build number in brackets (for example, OS Build 22631.3880). That's your full version identity right there.
  4. Close and you're done
    Click OK. Done. The whole thing takes under 15 seconds.
You now know your Windows edition, version, and OS build number. If someone asks which Windows you're running, you have a proper answer.

The winver command has been part of Windows for decades. Microsoft officially documents it as one of the two standard ways to identify your installed Windows version. It works on Windows 10 and Windows 11, and it works whether you're on Home, Pro, Enterprise, or any Insider build. It's the first thing I run on any machine I'm troubleshooting remotely, because it gives me everything I need in one glance.

If winver shows something like "Windows 11 Insider Preview" followed by an unusual build number, you're on a pre-release build. Compare that build number against the Microsoft Windows release health page to see where it sits in the release cycle.
Intermediate routeKeep going if needed

More Ways to Check Windows Version: Settings and System Info

2

Settings > System > About Easy

  1. Open Settings
    Right-click the Start button and select Settings, or press Windows + I.
  2. Go to System > About
    In the left sidebar, click System. Then scroll down and click About at the bottom of the list.
  3. Scroll to Windows specifications
    Scroll past the device name and processor info (that's your hardware, not your OS). Look for the section labelled Windows specifications.
  4. Read the four fields
    You'll see: Edition (Home, Pro, etc.), Version (like 23H2), Installed on (the date), and OS build (the full build number). There's also System type a bit further up, which tells you 32-bit or 64-bit.
Settings > System > About is the most complete single screen for checking your Windows version. It shows everything winver shows, plus system type and install date.

The Settings route is particularly useful when you need to check Windows version and also confirm whether the machine is 32-bit or 64-bit. That matters a lot when you're downloading software or drivers, because grabbing the wrong architecture version is a very common mistake. The System type field under Device specifications (just above Windows specifications) tells you clearly: "64-bit operating system, x64-based processor" or "32-bit operating system, x86-based processor".

One thing people get confused by: the top half of the About page shows your device name, processor, RAM, and storage. That's your hardware. The Windows specifications section lower down is your OS. They're on the same page but they're completely separate pieces of information. I've seen people read off their processor name when asked for their Windows version more times than I can count.

If you're helping someone else check their version remotely, this Settings path is often easier to walk them through than winver, because the labels are visible and descriptive rather than a dialog box with small text. For anyone who manages a household or small office with a mix of machines, keeping a note of the Edition and OS build for each device saves a lot of time later. If you're dealing with a PC that's behaving oddly after an update, knowing the exact OS build lets you cross-reference known issues quickly. You might also want to read our guide on Windows Update getting stuck if the build number looks unexpectedly old.

3

Classic System Properties via Control Panel Easy

  1. Open System Properties
    Press Windows + Pause/Break on your keyboard. On some laptops this shortcut doesn't work, so alternatively search for Control Panel in the Start menu, go to System and Security, then System.
  2. Read the Windows edition and system type
    The classic System window shows your Windows edition at the top and System type (32-bit or 64-bit) in the middle. It doesn't show the full OS build number, so if you need that, use winver or Settings instead.
Quick confirmation of edition and system type. Good fallback if Settings isn't opening properly.
Advanced routeChange one thing at a time

Advanced: Check Windows Version via Command Prompt and msinfo32

4

Command Prompt and PowerShell Methods Medium

  1. Open Command Prompt or PowerShell
    Press Windows + R, type cmd, and press Enter. Or search for PowerShell in the Start menu.
  2. Run the systeminfo command
    Type the following and press Enter:
    systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
    This filters the output to show just the OS name and version string. It takes a few seconds to run because systeminfo pulls a lot of data before filtering.
  3. Read the output
    You'll see two lines. OS Name gives you the full Windows edition name (for example, Microsoft Windows 11 Pro). OS Version gives you the build number in a slightly different format.
  4. Optional: check licensing details
    If you need to verify the licence type as well, run: slmgr /dlv in a Command Prompt window. This opens a separate dialog with detailed licence information including the licence channel (OEM, Retail, Volume).
The systeminfo command is particularly useful for scripting, logging, or when you need to check Windows version on a machine where the GUI is broken or restricted.
5

System Information (msinfo32) for a Full Audit Medium

  1. Open System Information
    Press Windows + R, type msinfo32, and press Enter. The System Information window opens.
  2. Check the System Summary panel
    The right-hand panel loads with System Summary selected by default. Look for: OS Name (full edition name), Version (build number in a longer format), and System Type (x64-based PC or x86-based PC).
  3. Compare against your expected baseline
    If you're auditing a managed machine or a fleet of PCs, compare the OS Name and Version shown here against your organisation's expected build. Any mismatch is worth investigating before assuming the install is correct.
msinfo32 is the most detailed single view of your system identity. It's overkill for most home users but genuinely useful for IT admins and anyone troubleshooting a heavily customised machine.

The Command Prompt method is something I reach for when I'm doing remote support and need to log the exact OS identity without clicking around. You can paste the output directly into a support ticket or a spreadsheet. And if you're dealing with a machine where Settings won't open (which does happen, usually after a dodgy update), the command line always works as a fallback.

The msinfo32 route is a bit slower to load but gives you everything in one place. I've used it plenty of times on machines that look like Windows 10 but are actually running an Insider Preview of Windows 11, because the visual difference can be subtle depending on what settings the user has changed. The OS Name field in msinfo32 doesn't lie. If you've got a machine that's behaving strangely and you're not sure whether a recent Windows update caused it, checking the OS build in msinfo32 and then cross-referencing with How-To Geek's version guide can save you a lot of guesswork. And if you suspect the update itself is the problem, our Windows Update troubleshooting guide covers the most common issues we see after feature updates.

If you run slmgr /dlv and the output shows "License Status: Unlicensed" or "Notification", your Windows copy may not be properly activated. That's a separate issue from knowing your version, but it's good to catch early. See our Windows activation fix guide if you run into that.

Preventing Confusion When You Need to Check Windows Version

The single most useful habit is to record your Windows details somewhere permanent the first time you check. Not just "Windows 11" but the full set: Edition, Version, OS build, and System type. Keep it in a notes app, a spreadsheet, or even a sticky note on the side of the monitor. When you need to install software six months from now and the installer asks for your Windows version, you'll have the answer without having to dig around again.

A few things that catch people out repeatedly:

  1. Don't judge by appearance. A PC with a dark theme, a custom taskbar, or OEM branding can look completely different from a standard Windows install. The only reliable way to check Windows version is through winver or Settings, full stop.
  2. Record Edition and OS build separately. "Windows 11" is not enough. Windows 11 Home on build 22000.xxx behaves differently from Windows 11 Pro on build 22631.xxx in terms of available features and update behaviour.
  3. Check system type when downloading software. If you're downloading a driver or a large application, always confirm 32-bit versus 64-bit first. Installing the wrong one wastes time and occasionally causes problems that need a clean reinstall to fix.
  4. Keep Windows updated. A current OS build is easier to identify and support. Machines sitting on very old builds often have update-related quirks that make the version harder to pin down, and they're also missing security patches.
  5. For multiple PCs, maintain a simple inventory. Even a basic spreadsheet with device name, Windows edition, and OS build for each machine saves enormous time when something goes wrong. It's especially useful if you're the person everyone calls when their PC breaks.

One thing that comes up in remote support sessions fairly often: someone has upgraded from Windows 10 to Windows 11 but the machine still shows some Windows 10 style elements because they haven't restarted fully or the upgrade didn't complete cleanly. If winver says Windows 11 but the taskbar looks like Windows 10, a full restart usually sorts it. If it doesn't, that's worth investigating properly rather than ignoring.

Check Windows Version: Summary

To check Windows version on any Windows 10 or Windows 11 machine, the fastest method is always winver. Press Windows + R, type winver, press Enter. Done in ten seconds. If you need more detail, particularly the system type for 32-bit or 64-bit, go to Settings > System > About and read the Windows specifications section. For anything more technical, like auditing a fleet of PCs or verifying a licence, Command Prompt with systeminfo or msinfo32 gives you the full picture. The key thing to remember is that Windows version, edition, and OS build are three separate fields, and knowing which one you actually need makes the whole process much less confusing. Once you've checked, write it down. Future you will be glad you did.

Frequently Asked Questions

Use Settings > System > About or run winver (press Windows + R, type winver, press Enter). Both show the edition and version clearly.

Both winver and Settings > System > About display the OS build number. The winver dialog shows it in brackets next to the version, for example Version 23H2 (OS Build 22631.xxxx).

Open Settings > System > About and look for System type. It will say either 32-bit operating system or 64-bit operating system. You can also open System Information (msinfo32) and check the System Type field there.

Go to Settings > System > About and look under Windows specifications. The Edition field shows Home, Pro, Enterprise, or whichever variant is installed.

Press Windows + R, type winver, and press Enter. The About Windows box opens in seconds and shows your edition, version, and OS build number all in one place.