Hi,
2 Ways to determine the Windows Feature Version / Release ID from commandline. With powershell
1 2 | PS D:\> ( Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" -Name ReleaseID).ReleaseID 1803 |
or from cmd command line
1 2 | D:\> reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" - v ReleaseID ReleaseID REG_SZ 1803 |