2025-07-09 18:14:51 UTC
3.31 GB
UTF-8
PYTHON_SHA256c1cb40978b28f696b111c36034a1bdeda17d25e35c74a08ef5e5ff405a63fc20
PYTHON_VERSION3.13.5
[#000] sha256:1317fe15185685e9cd27f7542cd96f4847343401288a8b6798273a4ac60844eb - 62.4% (2.06 GB)
[#001] sha256:49ebc78effce2335b8fe04c34f5f1f3e33e513d5a7831fa81718af6737b3d654 - 35.94% (1.19 GB)
[#002] sha256:b56b80b5a4af19f991b5d6c4995ba359d21bfe4189f31a84244b5be1e245d537 - 0.0% (1.27 KB)
[#003] sha256:88e9b44ae40df43c912a6a18fdc400a1d93a434e56b7f94c4a0247211f2bdbe1 - 0.0% (1.26 KB)
[#004] sha256:410442baf975df5ccbadecdaa541f41a343ab173c6136f6660d3bbb236277700 - 0.0% (1.29 KB)
[#005] sha256:a536183688b61a1691b56ad2988e3e38eb91239ae51e5282a5a89c1e66d737d3 - 0.0% (1.28 KB)
[#006] sha256:ef5c8d59a65672be5f1d2d3b1789b14be899fac0e4f80722d6bc3546c16767ff - 1.67% (56.5 MB)
[#007] sha256:0cb951b28e0df6b5714a3c474d4cbdf7fc6b7901405ba6e4c848902e49507254 - 0.0% (1.29 KB)
Apply image 10.0.26100.2605
2025-07-05 18:40:54 UTCInstall update 10.0.26100.4652
2025-07-09 18:14:07 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]
2025-07-09 18:14:08 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHONIOENCODING=UTF-8
2025-07-09 18:14:09 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_VERSION=3.13.5
2025-07-09 18:14:10 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_SHA256=c1cb40978b28f696b111c36034a1bdeda17d25e35c74a08ef5e5ff405a63fc20
2025-07-09 18:14:50 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-07-09 18:14:51 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) CMD ["python"]