- Newest
- Most votes
- Most comments
It may not be the latest version, but I was able to download it from the S3 URL below.
https://aws.amazon.com/jp/blogs/compute/building-a-high-performance-windows-workstation-on-aws-for-graphics-intensive-applications/
https://nvidia-gaming.s3.amazonaws.com/windows/531.79_Cloud_Gaming_win10_win11_server2019_server2022_dch_64bit_international.exe
You can start the download by running the command below in PowerShell.
Invoke-WebRequest -Uri https://nvidia-gaming.s3.amazonaws.com/windows/531.79_Cloud_Gaming_win10_win11_server2019_server2022_dch_64bit_international.exe -outfile 531.79_Cloud_Gaming_win10_win11_server2019_server2022_dch_64bit_international.exe
Hello.
I tried running the same command in my environment, but the same error occurred.
I am also using the same IAM policy.
I think it's probably a configuration error on the AWS side.
I am not sure when a fix will be made, but we encourage you to report that the script in the documentation is not available at the URL below.
https://docs-feedback.aws.amazon.com/feedback.jsp?hidden_service_name=EC2&topic_url=https://docs.aws.amazon.com/en_us/AWSEC2/latest/UserGuide/install-nvidia-driver.html
I didn't notice about feedback link! thanks, I just sent feedback now.
It's old but I encountered this so hopefully this response will help people that look for an answer. You need to attach an IAM policy to access the S3 bucket to the EC2 IAM role. Something like:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowReadNVidiaS3Bucket",
"Effect": "Allow",
"Action": [
"s3:Get*",
"s3:List*",
"s3:Describe*"
],
"Resource": [
"arn:aws:s3:::nvidia-gaming*"
]
}
]
}
Relevant content
- asked 2 years ago
- AWS OFFICIALUpdated 7 months ago

Thanks! I tried some version numbers and it looks like latest available version (on S3) is 551.61 (I got version list from https://www.nvidia.com/download/find.aspx ). It almostly resolved my issue, I will accept your answer, really thanks!!