Windows 10 build 15140
Build of Windows 10 Fall Creators Update | |
OS family | Windows 10 (NT 10.0) |
---|---|
Version number | 10.0 |
Build number | 15140 |
Build revision | 1001 |
Build lab | rs_onecore_container_hyp |
Compiled on | 2017-02-20 |
Windows 10 build 15140 is the earliest known build of Windows 10 Fall Creators Update. It was referenced in Prepare-CIImage.ps1
script pushed to GitHub by a Microsoft employee on 2 March 2017.[1]
# Split the path into it's parts
#\\winbuilds\release\RS_ONECORE_CONTAINER_HYP\15140.1001.170220-1700
# $branch --> RS_ONECORE_CONTAINER_HYP
# $build --> 15140.1001
# $timestamp --> 170220-1700
$parts =$path.Split("\")
if ($parts.Length -ne 6) {
Throw ("Path appears to be invalid. Should be something like \\winbuilds\release\RS_ONECORE_CONTAINER_HYP\15140.1001.170220-1700")
}
$branch=$parts[4]
Write-Host "INFO: Branch is $branch"
$parts=$parts[5].Split(".")
if ($parts.Length -ne 3) {
Throw ("Path appears to be invalid. Should be something like \\winbuilds\release\RS_ONECORE_CONTAINER_HYP\15140.1001.170220-1700. Could not parse build ID")
}