Quantcast
Channel: Rob V IT
Viewing all articles
Browse latest Browse all 64

How to get your Windows Release Version and Build number?

$
0
0

It’s very simple to get your Windows Build number, like “Version 10.0.18363 Build 18363”. You need to seek a little bit longer to find your Windows Version number. In this short blog I will tell you where to find all the version numbers. And just sharing a note to myself.

How to find your Windows Build number?

GUI Search for “System Information in your task Menu.”
PowerShell: $PSVersionTable
PowerShell: [system.Environment]::OSVersion.Version
CMD: wmic os get version

How to find your Windows Release number?

GUI Search for: “winver” in your search menu.
CMD: REG QUERY “HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion” | findstr ReleaseId
PowerShell: (Get-ItemProperty -Path ‘HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion’).ReleaseId

The post How to get your Windows Release Version and Build number? appeared first on Rob V IT.


Viewing all articles
Browse latest Browse all 64

Trending Articles