Windows 10 build 15140

10.0.15140.1001.rs_onecore_container_hyp.170220-1700
Build of Windows 10 Fall Creators Update
OS familyWindows 10 (NT 10.0)
Version number10.0
Build number15140
Build revision1001
Build labrs_onecore_container_hyp
Compiled on2017-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")
}

References[edit | edit source]