2025-05-27 19:11:18 UTC
2.09 GB
UTF-8
PYTHON_SHA256279b1d0e2b1b6cece6f03e49218aacccfd10367e07b785edeb1d4135507434c1
PYTHON_VERSION3.14.0b2
[#000] sha256:803f4a9590cb9c635813cbd0ee89190f92d5fe4c7589711cf468879e42ce02ba - 76.68% (1.6 GB)
[#001] sha256:a95a939635fd6bec8c1562dcdbdde2fdb64095d1be9873313939c878db6f7279 - 20.66% (442 MB)
[#002] sha256:123717025a2861f93b2fdc09a61aadc82f45cec753e437286c98254cd170d3e6 - 0.0% (1.26 KB)
[#003] sha256:87ac9608920ce6c7af0025a05dba2264e8557e3a6769d92a6f3e15549915c2b9 - 0.0% (1.26 KB)
[#004] sha256:2854583134be0e01193a61e90d869dde85a307ab4a16c165e783bbfe93fea517 - 0.0% (1.26 KB)
[#005] sha256:1cc35f0372b67835b7f2c53c997dd1028770163f0cb152c67965301ee27a1ce4 - 0.0% (1.26 KB)
[#006] sha256:2d75229b4aa79bd66d604eae02f42d6da4de2395ee6b3cff7f600b08fb600815 - 2.66% (56.9 MB)
[#007] sha256:6d1da02780c4ebaf9ff290be77db7d9a262ea604d2c082b27d7c830a5967e034 - 0.0% (1.3 KB)
Apply image 10.0.17763.6293
2025-05-09 13:51:15 UTCInstall update 10.0.17763.7314
2025-05-27 19:09:42 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]
2025-05-27 19:09:44 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHONIOENCODING=UTF-8
2025-05-27 19:09:45 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_VERSION=3.14.0b2
2025-05-27 19:09:46 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_SHA256=279b1d0e2b1b6cece6f03e49218aacccfd10367e07b785edeb1d4135507434c1
2025-05-27 19:11:17 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-05-27 19:11:18 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) CMD ["python"]