2025-04-18 03:25:54 UTC
3.22 GB
UTF-8
PYTHON_SHA256944e24cde04e4067ae728578afc8fbc78d9a0d735e9c9348720c857d61bd8e1e
PYTHON_VERSION3.14.0a7
[#000] sha256:1317fe15185685e9cd27f7542cd96f4847343401288a8b6798273a4ac60844eb - 64.11% (2.06 GB)
[#001] sha256:86a55b9bd12cfb5d81d64963683e6d5d0ba9423233c85140eff135128a64f7ee - 34.15% (1.1 GB)
[#002] sha256:15bf6ebb013594e4aa50e804b3d91c9a0e2e6104707b440a54aaf6d0a5307783 - 0.0% (1.29 KB)
[#003] sha256:5dc5966035d4f867b17cf7515f2f015d92a60572b1de18cab9ca848f9c665496 - 0.0% (1.31 KB)
[#004] sha256:380b8bd66c65a62f4a61a48aae3dc00c03a6da9f11c48d2184934afd1cfce1d3 - 0.0% (1.26 KB)
[#005] sha256:f1167372a6e245ec692f044c1537207256d601c76f2ed8b5b98c13c9b5b0d676 - 0.0% (1.28 KB)
[#006] sha256:5883ca0a88d7e1487323115b2200623e74d79920cd6fcc08c5bdb06fa201c19e - 1.74% (57.4 MB)
[#007] sha256:cd1eb0f296e7a292fa8f6a4ed071092610b8f85f40fe4b8ace7a5f0287891448 - 0.0% (1.27 KB)
Apply image 10.0.26100.2605
2025-04-15 10:03:37 UTCInstall update 10.0.26100.3781
2025-04-18 03:25:09 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]
2025-04-18 03:25:10 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHONIOENCODING=UTF-8
2025-04-18 03:25:11 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_VERSION=3.14.0a7
2025-04-18 03:25:12 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_SHA256=944e24cde04e4067ae728578afc8fbc78d9a0d735e9c9348720c857d61bd8e1e
2025-04-18 03:25:53 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-04-18 03:25:54 UTCpowershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) CMD ["python"]