2025-08-12 20:35:01 UTC
2.18 GB
UTF-8
PYTHON_SHA256564059f73af7707db1a5b5614d86320eb662036331e37b5a2020b7960895900e
PYTHON_VERSION3.14.0rc1
[#000] sha256:2534953f34d35976fc44cd67bfdd39fdcd9e2eaae57ada0be53d5fb936cd3a0b - 62.41% (1.36 GB)
[#001] sha256:06b9b30319b49e62edeeff59663c236bf6a406712417e8a1be70ae07afd76e2c - 34.98% (782 MB)
[#002] sha256:d076ddafd23947abef586a881512a8e5ea082be8a560787c5f50f2028edfa148 - 0.0% (1.26 KB)
[#003] sha256:15dd7cbb0630011e65b3c6e9d133de054e5a6abb1e62244730a7fea4c35d82d5 - 0.0% (1.25 KB)
[#004] sha256:099895f1a55ed10ee7ca0959ef73e2e5eafc4299813f431714d9e6db011e1596 - 0.0% (1.25 KB)
[#005] sha256:f6207a67449b08b7460effc3252843d3d5d900c042b542cc2e2df7ff454068c0 - 0.0% (1.25 KB)
[#006] sha256:6add6c1f10dac77c21279f431fad28aa519480af1bb2172c8cc93064473462c8 - 2.61% (58.3 MB)
[#007] sha256:551c3320c2237b1644b5f049bc638dc46a46010767ca9bf271e5baeeb6e61d04 - 0.0% (1.25 KB)
Apply image 10.0.20348.2700
2025-08-08 18:40:34 UTCInstall update 10.0.20348.4052
2025-08-12 20:34:16 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]
2025-08-12 20:34:17 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHONIOENCODING=UTF-8
2025-08-12 20:34:18 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_VERSION=3.14.0rc1
2025-08-12 20:34:19 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_SHA256=564059f73af7707db1a5b5614d86320eb662036331e37b5a2020b7960895900e
2025-08-12 20:34:59 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f ($env:PYTHON_VERSION -replace '[a-z]+[0-9]*$', ''), $env:PYTHON_VERSION); Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile 'python.exe'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:PYTHON_SHA256); if ((Get-FileHash python.exe -Algorithm sha256).Hash -ne $env:PYTHON_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Installing ...'; $exitCode = (Start-Process python.exe -Wait -NoNewWindow -PassThru -ArgumentList @( '/quiet', 'InstallAllUsers=1', 'TargetDir=C:\Python', 'PrependPath=1', 'Shortcuts=0', 'Include_doc=0', 'Include_pip=1', 'Include_test=0' ) ).ExitCode; if ($exitCode -ne 0) { Write-Host ('Running python installer failed with exit code: {0}' -f $exitCode); Get-ChildItem $env:TEMP | Sort-Object -Descending -Property LastWriteTime | Select-Object -First 1 | Get-Content; exit $exitCode; } $env:PATH = [Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' python --version'; python --version; Write-Host 'Removing ...'; Remove-Item python.exe -Force; Remove-Item $env:TEMP/Python*.log -Force; $env:PYTHONDONTWRITEBYTECODE = '1'; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Complete.'
2025-08-12 20:35:01 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) CMD ["python"]