Skip to main content

Check Microsoft Windows version

There are several ways to check Microsoft Windows version.

1. Windows + Pause

Press "Windows + Pause" keys to open System window
Press "Windows + Pause" keys to open System window

2. Run ver command

ver command is introduced in version 1709.

Check Microsoft Windows version: ver
Check Microsoft Windows version: ver

3. Run winver command

Check Microsoft Windows version: winver
Check Microsoft Windows version: winver

4. REG QUERY

C:\REG QUERY "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion" /v BuildLabEx
Check Microsoft Windows version: REG QUERY
Check Microsoft Windows version: REG QUERY

Popular posts from this blog

nmap - The Network Mapper

WARNING : It is ILLEGAL to scan hosts without permission.

Linux: compound commands

command1 ; command2 ; command3 command1 is executed, then command2, and then command3 command1 && command2 && command3 command2 is executed only if command1 run successfully (exit code is 0), command3 is executed only if command2 run successfully (exit code is 0) command1 || command2 || command3 command2 is executed only if command1 exit code is 0 (failure), command3 is executed only if command2 exit code is 0 (failure)