How Do I Check If I Have Windows 10 Anniversary Update?

Solution
Nerd ways:

powershell:
[System.Environment]:: OSVersion.Version

vbscript

Set SystemSet = GetObject("winmgmts:").InstancesOf ("Win32_OperatingSystem")
for each System in SystemSet
WScript.Echo System.Caption
WScript.Echo " Version: " + System.Version
next

update, damn emoticons...
Nerd ways:

powershell:
[System.Environment]:: OSVersion.Version

vbscript

Set SystemSet = GetObject("winmgmts:").InstancesOf ("Win32_OperatingSystem")
for each System in SystemSet
WScript.Echo System.Caption
WScript.Echo " Version: " + System.Version
next

update, damn emoticons...
 
Solution

TRENDING THREADS