Invoke-WebRequest -Uri "https://www.python.org/ftp/python/3.11.3/python-3.11.3-amd64.exe" -OutFile "python-3.11.3-amd64.exe"
Start-Process python-3.11.3-amd64.exe -ArgumentList "/quiet InstallAllUsers=1 PrependPath=1 Include_test=0" -wait
$env:Path = [System.Environment]::GetEnvironmentVariable('Path', 'Machine')
Write-Output $Env:Path
python --version