2025-03-17 17:56:05 UTC
2.76 GB
UTF-8
PYTHON_SHA25617fa8fabd7d926ffd634f48c40050ff3b0d61364a1719150ccbb45b732fd7afd
PYTHON_VERSION3.14.0a6
[#000] sha256:1317fe15185685e9cd27f7542cd96f4847343401288a8b6798273a4ac60844eb - 74.62% (2.06 GB)
[#001] sha256:325ca01145f0fc17834eb1871e37e4a03c69b868e3eb071bf21be6413d720e5e - 23.36% (661 MB)
[#002] sha256:4bcf54e2b1ffa947c44872be4660cea04b656e3a398bb4833049f007d1f1289c - 0.0% (1.28 KB)
[#003] sha256:4b14f8f7122375aef4123b19e0f7f97e75d53abef0efe54ff1fb1ddf48c35413 - 0.0% (1.29 KB)
[#004] sha256:501a2ea1144cce32bef06de4f464de1a6e6f6d74ee4e0f3fb97a1e1780dbe0df - 0.0% (1.28 KB)
[#005] sha256:c32bcc9b9a88356a64b243472b15a32e21c2484cdaae3d2b82103d7367b5bc6b - 0.0% (1.28 KB)
[#006] sha256:be2149039763301903658d9b939ba7160a63d5ae06f1f0c3cc7d9368363e0966 - 2.02% (57.2 MB)
[#007] sha256:acf84b45e83bb13752556c73a13cd83169e0a841815eca11164e39ad5c62aa0b - 0.0% (1.28 KB)
Apply image 10.0.26100.2605
2025-03-07 06:08:48 UTCInstall update 10.0.26100.3476
2025-03-17 17:55:22 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]
2025-03-17 17:55:23 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHONIOENCODING=UTF-8
2025-03-17 17:55:24 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_VERSION=3.14.0a6
2025-03-17 17:55:25 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_SHA256=17fa8fabd7d926ffd634f48c40050ff3b0d61364a1719150ccbb45b732fd7afd
2025-03-17 17:56:04 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-03-17 17:56:05 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) CMD ["python"]