Thursday, December 17, 2015

How To Tell Which Version Your Windows 10 DVD/ISO Is

There are a few different ways that I've found in my time testing, remotely deploying (and uninstalling accidental installs, gulp!) in my time at Atlanta I.T. Service in Lawrenceville, Georgia (which is a great company to work for, by the way) to be able to determine which release your build of the Windows 10 DVD or the ISO 9660/UDF image is. Since we only have two major RTM and post-RTM builds, one of the below methods should work and make things simple.

Open the ISO9660/UDF file in 7Zip. Extract the file located at sources/Setup.exe and run Grep/Strings on it: This seems to show the most accurate release number, including an internal build number. I have yet to install this ISO, so I am not sure if the 151029 number is indicative of it being a 10.0.10586.29 build number. The command below uses Sysinternals' strings program, in case you work in a high security environment that only allows signed/whitelisted executables:
> strings setup.exe | findstr -i 10\.
10.0.10586.0 (th2_release.151029-1700)

DLL Method: Once you've extracted the files from your Windows 10 ISO file, find at any DLL file in the Sources folder. Right-click it and choose Properties. Then click the Details tab. Under Product Version or File Version, it will show the build number:




Sources/Ws.dat: This file is in the sources folder. This file is in the .inf format. Open it in Notepad and it will show the build in the ClientVersion field. Note that in the 10240 build this file was empty, but going forward it might be used in the future.
ClientVersion=10.0.10586.0

Sources/Idwbinfo.txt: This file is in the sources folder. Open it in notepad and it will show the major release. th1_release is for 10240 and th2_release is 10586. The TH(N) naming scheme refers to Threshold, eg. TH2 is Threshold 2:
BuildBranch=th2_release
Sources/schema.dat: This file is in the sources folder. It's a binary file, but you can still open it in notepad. Search it for the string version and you'll see the full build number

Sources/sxs/microsoft-windows-netfx3-ondemand-package.cab: This file is in the sources/sxs folder. Open the file with 7-zip, and the file names will show the Windows build number:

amd64_addinprocess32_b77a5c561934e089_10.0.10586.0_none_0d954895973e1712

Here's my copy of the Media Creation Tool, version 10586, which as of December 17, 2015, will still download a build 10586 ISO. If you have the original July 10240 Media Creation Tool, it will download the RTM build 10240 ISO.

No comments: