How to Check Your Windows Version on a Laptop

Knowing which version of Windows your laptop is running isn't just a trivia question — it affects everything from software compatibility to security support to troubleshooting steps. Whether you're trying to install a new app, update a driver, or figure out if your machine still gets security patches, the process starts with one thing: knowing exactly what you're working with.

The good news is that Windows gives you several ways to find this information, and most of them take under a minute.

Why Your Windows Version Actually Matters

Not all Windows versions behave the same way, and the differences aren't trivial. Windows 10 and Windows 11 have distinct hardware requirements, interface designs, and feature sets. Even within the same major version, the edition (Home, Pro, Enterprise) and the build number determine which features are available and whether your system is still receiving updates.

For example, Windows 10 has gone through dozens of feature updates since its 2015 release. A laptop running Windows 10 version 21H2 is meaningfully different from one running 22H2 in terms of supported features and security patch status. Microsoft publishes end-of-support dates for each version, so knowing your exact build can tell you whether your machine is still covered.

Method 1: Settings App (The Straightforward Way)

This is the most reliable method for most users and gives you the most complete information in one place.

  1. Click the Start menu and open Settings (the gear icon)
  2. Go to System
  3. Scroll down and click About

Under Windows specifications, you'll see:

  • Edition — e.g., Windows 11 Home or Windows 10 Pro
  • Version — e.g., 22H2 or 23H2
  • Installed on — the date the current version was applied
  • OS build — a more granular number used for troubleshooting and compatibility checks

This view is the most useful for general purposes because it gives you the full picture at once.

Method 2: Run Dialog with winver 🖥️

If you want the fastest possible answer:

  1. Press Windows key + R to open the Run dialog
  2. Type winver and press Enter

A small window pops up showing your Windows edition and build number. It's less detailed than the Settings page but takes about five seconds total — useful when you need a quick answer during a support call or troubleshooting session.

Method 3: System Information Tool

For a more technical breakdown:

  1. Press Windows key + R
  2. Type msinfo32 and press Enter

The System Information window opens with a comprehensive snapshot of your hardware and software environment. Under OS Name and Version, you'll find your Windows version alongside information about your processor, RAM, and system architecture (32-bit vs. 64-bit). This is the method IT professionals and tech-savvy users tend to reach for when they need more than just the version number.

Method 4: Command Prompt or PowerShell

If you're comfortable with a command line — or you're troubleshooting remotely — this approach gives you precise version data fast.

Command Prompt:

winver 

or for more detail:

systeminfo | findstr /B /C:"OS Name" /C:"OS Version" 

PowerShell:

Get-ComputerInfo | Select-Object OsName, OsVersion, OsBuildNumber 

These commands are especially useful when managing multiple machines or running scripts, since the output can be logged or copied cleanly.

What the Version Numbers Actually Mean

What You SeeWhat It Tells You
Windows 10 / Windows 11The major release generation
Home / Pro / EnterpriseThe edition — determines available features
22H2, 23H2, etc.The feature update version (year + half)
OS Build (e.g., 22621.3155)The exact patch level — used for precise troubleshooting

The build number is the most granular identifier. Two laptops can both say "Windows 11 22H2" but have different build numbers if one has received more recent cumulative updates than the other.

32-Bit vs. 64-Bit: A Related Detail Worth Noting

While you're checking your version, it's worth noting your system type — whether you're running a 32-bit or 64-bit version of Windows. This appears in the same About screen in Settings. It matters for software downloads: most modern apps have separate 32-bit and 64-bit installers, and installing the wrong one can cause performance issues or outright failure.

Nearly all laptops sold in the last decade run 64-bit hardware, but some older machines may still be running a 32-bit version of Windows even on 64-bit hardware — a legacy configuration that limits RAM usage and application compatibility.

The Variables That Shape What You Find

Here's where individual setups start to diverge. Checking your version is straightforward — but what that version means for your situation depends on factors specific to your machine:

  • How old your laptop is — older hardware may be ineligible for Windows 11 entirely, due to TPM 2.0 and CPU requirements
  • Whether your OEM pre-installed a specific edition — some business laptops ship with Pro or Enterprise, others with Home
  • Your update settings — if automatic updates are paused or disabled, your build number may be significantly behind current
  • Whether you upgraded from an older version — in-place upgrades sometimes carry over settings or edge cases that a clean install wouldn't have

A laptop bought in 2018 running Windows 10 22H2, a corporate machine on Windows 10 Enterprise LTSC, and a new consumer laptop on Windows 11 23H2 are all "Windows laptops" — but their version details, support timelines, and feature availability are entirely different. ✅

What those differences mean for any given user comes down to what the machine is being used for, how long it needs to stay supported, and what software it needs to run — none of which the version number alone can answer.