Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...

Downloads:
106,931
Downloads of v 457.30:
1,720
Last Update:
10 Nov 2020
Package Maintainer(s):
Software Author(s):
- NVIDIA
Tags:
graphics card driver geforce nvidia experience admin- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Geforce Game Ready Driver
This is not the latest version of Geforce Game Ready Driver available.
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
106,931
Downloads of v 457.30:
1,720
Maintainer(s):
Software Author(s):
- NVIDIA
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Geforce Game Ready Driver 457.30
This is not the latest version of Geforce Game Ready Driver available.
This Package Contains an Exempted Check
1 Test Passing and 1 Exempted Test
Validation Testing Passed
Verification Testing Exempt:
Nvidia graphics card is needed for successful install
To install Geforce Game Ready Driver, run the following command from the command line or from PowerShell:
To upgrade Geforce Game Ready Driver, run the following command from the command line or from PowerShell:
To uninstall Geforce Game Ready Driver, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download geforce-game-ready-driver --internalize --version=457.30 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade geforce-game-ready-driver -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade geforce-game-ready-driver -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure geforce-game-ready-driver installed
win_chocolatey:
name: geforce-game-ready-driver
state: present
version: 457.30
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'geforce-game-ready-driver' do
action :install
version '457.30'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: geforce-game-ready-driver,
Version: 457.30,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller geforce-game-ready-driver
{
Name = 'geforce-game-ready-driver'
Ensure = 'Present'
Version = '457.30'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'geforce-game-ready-driver':
provider => 'chocolatey',
ensure => '457.30',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install geforce-game-ready-driver version="457.30" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 10 Nov 2020.
GeForce Game Ready Driver
This package simply installs the latest Nvidia Geforce Game Ready Driver. Keep your GPU up to date with chocolatey!
Package Parameters
For DCH, please use the package parameter /dch
choco feature enable -n=useRememberedArgumentsForUpgrades
cinst geforce-game-ready-driver --package-parameters="'/dch'"
Support
Please refer to the release notes below or check nvidia.com to see which cards are no longer supported.
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = 'geforce-game-ready-driver'
fileType = 'EXE'
url64 = 'https://us.download.nvidia.com/Windows/457.30/457.30-desktop-win10-64bit-international-whql.exe'
checksum64 = '121661a39065d6c7a17534d8a87389c1532c9f49684a1e035f57f98fe7bc686c'
checksumType64 = 'sha256'
silentArgs = '-s -noreboot'
validExitCodes = @(0,1)
softwareName = 'NVIDIA Graphics Driver*'
}
If ( [System.Environment]::OSVersion.Version.Major -ne '10' ) {
$packageArgs['url64'] = 'https://us.download.nvidia.com/Windows/457.30/457.30-desktop-win8-win7-64bit-international-whql.exe'
$packageArgs['checksum64'] = '3e597857e6111bba18c7acd62574e18ef00fdae2bffff1089b20c95cbdadf6d5'
}
$pp = Get-PackageParameters
If ($pp['dch'] -eq 'true') {
$packageArgsDCHURL = 'https://us.download.nvidia.com/Windows/457.30/457.30-desktop-win10-64bit-international-dch-whql.exe'
$packageArgsDCHChecksum = '2aa80645e8f14c9f292fe522cba06748f4529d0e4a4e7dbd9f1a5772255e2fd0'
$packageArgs['url64'] = $packageArgsDCHURL
$packageArgs['checksum64'] = $packageArgsDCHChecksum
}
If ( -not (Get-OSArchitectureWidth -compare 64) ) {
Write-Warning "NVIDIA has ended support for 32bit operating systems."
Write-Warning "32 bit users should specify version 391.35."
Write-Warning "Security patches for 32bit may be available on geforce.com"
Write-Error "32 bit no longer supported."
}
Install-ChocolateyPackage @packageArgs
Write-Host "The package 'nvidia-display-driver' is also available for those who don't want or need the extra software bundled with the conventional geforce package."
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = 'geforce-game-ready-driver'
softwareName = 'NVIDIA Graphics Driver*'
fileType = 'EXE'
validExitCodes= @(0)
}
$packageArgs['file'] = (Get-UninstallRegistryKey $packageArgs['softwareName']).UninstallString -replace "\s.*$"
$packageArgs['silentArgs'] = (Get-UninstallRegistryKey $packageArgs['softwareName']).UninstallString -replace "^.*?\s" -replace "$"," -silent"
If ( -not $env:ChocolateyForce) {
Write-Warning 'Uninstalling this package will forcibly reboot your PC.'
Write-Warning 'If you wish to proceed, please specify the --force parameter.'
Write-Error 'Uninstall not called with --force. Aborting.'
}
Uninstall-ChocolateyPackage @packageArgs
Log in or click on link to see number of positives.
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Geforce Game Ready Driver 461.09 | 1391 | Friday, January 8, 2021 | Approved |
Geforce Game Ready Driver 460.89 | 1692 | Wednesday, December 16, 2020 | Approved |
Geforce Game Ready Driver 460.79 | 800 | Thursday, December 10, 2020 | Approved |
Geforce Game Ready Driver 457.51 | 792 | Thursday, December 3, 2020 | Approved |
Geforce Game Ready Driver 457.30 | 1720 | Tuesday, November 10, 2020 | Approved |
Geforce Game Ready Driver 457.09 | 796 | Friday, October 30, 2020 | Approved |
Geforce Game Ready Driver 456.71 | 1145 | Thursday, October 8, 2020 | Approved |
Geforce Game Ready Driver 456.55 | 878 | Tuesday, September 29, 2020 | Approved |
Geforce Game Ready Driver 456.38 | 990 | Friday, September 18, 2020 | Approved |
Geforce Game Ready Driver 452.06 | 1214 | Tuesday, August 18, 2020 | Approved |
Geforce Game Ready Driver 451.67 | 1489 | Friday, July 10, 2020 | Approved |
Geforce Game Ready Driver 451.48 | 995 | Thursday, June 25, 2020 | Approved |
Geforce Game Ready Driver 446.14 | 1196 | Thursday, May 28, 2020 | Approved |
Geforce Game Ready Driver 445.87 | 1468 | Wednesday, April 15, 2020 | Approved |
Geforce Game Ready Driver 445.75 | 1371 | Tuesday, March 24, 2020 | Approved |
Geforce Game Ready Driver 442.74 | 771 | Friday, March 20, 2020 | Approved |
Geforce Game Ready Driver 442.59 | 777 | Wednesday, March 11, 2020 | Approved |
Geforce Game Ready Driver 442.50 | 1054 | Friday, February 28, 2020 | Approved |
Geforce Game Ready Driver 442.19 | 1084 | Tuesday, February 4, 2020 | Approved |
Geforce Game Ready Driver 441.87 | 886 | Friday, January 24, 2020 | Approved |
Geforce Game Ready Driver 441.66 | 1678 | Wednesday, December 11, 2019 | Approved |
Geforce Game Ready Driver 441.41 | 874 | Wednesday, November 27, 2019 | Approved |
Geforce Game Ready Driver 441.20 | 1174 | Tuesday, November 12, 2019 | Approved |
Geforce Game Ready Driver 441.12 | 954 | Tuesday, November 5, 2019 | Approved |
Geforce Game Ready Driver 441.08 | 891 | Wednesday, October 30, 2019 | Approved |
Geforce Game Ready Driver 440.97 | 731 | Wednesday, October 23, 2019 | Approved |
Geforce Game Ready Driver 436.48 | 1552 | Wednesday, October 2, 2019 | Approved |
Geforce Game Ready Driver 436.30 | 1293 | Wednesday, September 11, 2019 | Approved |
Geforce Game Ready Driver 436.15 | 1364 | Wednesday, August 28, 2019 | Approved |
Geforce Game Ready Driver 436.02 | 295 | Tuesday, August 27, 2019 | Approved |
Geforce Game Ready Driver 431.60 | 1630 | Tuesday, July 23, 2019 | Approved |
Geforce Game Ready Driver 431.36 | 1037 | Wednesday, July 10, 2019 | Approved |
Geforce Game Ready Driver 430.86 | 1720 | Tuesday, May 28, 2019 | Approved |
Geforce Game Ready Driver 430.64 | 1691 | Friday, May 10, 2019 | Approved |
Geforce Game Ready Driver 430.39 | 1823 | Wednesday, April 24, 2019 | Approved |
Geforce Game Ready Driver 425.31 | 1421 | Thursday, April 11, 2019 | Approved |
Geforce Game Ready Driver 419.67 | 1223 | Tuesday, March 26, 2019 | Approved |
Geforce Game Ready Driver 419.35.0.20190325 | 216 | Monday, March 25, 2019 | Approved |
Geforce Game Ready Driver 419.35.0.20190324 | 238 | Sunday, March 24, 2019 | Approved |
Geforce Game Ready Driver 419.35.0.20190323 | 226 | Saturday, March 23, 2019 | Approved |
Geforce Game Ready Driver 419.35 | 991 | Wednesday, March 6, 2019 | Approved |
Geforce Game Ready Driver 419.17 | 1247 | Saturday, February 23, 2019 | Approved |
Geforce Game Ready Driver 418.91 | 1096 | Thursday, February 14, 2019 | Approved |
Geforce Game Ready Driver 418.81 | 1081 | Tuesday, February 5, 2019 | Approved |
Geforce Game Ready Driver 417.71 | 1360 | Tuesday, January 15, 2019 | Approved |
Geforce Game Ready Driver 417.35.20181228 | 1590 | Saturday, December 29, 2018 | Approved |
Geforce Game Ready Driver 417.35 | 1385 | Thursday, December 13, 2018 | Approved |
Geforce Game Ready Driver 417.22 | 1114 | Tuesday, December 4, 2018 | Approved |
Geforce Game Ready Driver 417.01.0.20181202 | 332 | Sunday, December 2, 2018 | Approved |
Geforce Game Ready Driver 417.01 | 698 | Tuesday, November 27, 2018 | Approved |
Geforce Game Ready Driver 416.94 | 1157 | Wednesday, November 14, 2018 | Approved |
Geforce Game Ready Driver 416.81 | 484 | Friday, November 9, 2018 | Approved |
Geforce Game Ready Driver 416.34 | 2380 | Friday, October 12, 2018 | Approved |
Geforce Game Ready Driver 411.70 | 905 | Friday, September 28, 2018 | Approved |
Geforce Game Ready Driver 411.63 | 213 | Thursday, September 20, 2018 | Approved |
Geforce Game Ready Driver 399.24 | 1000 | Tuesday, September 11, 2018 | Approved |
Geforce Game Ready Driver 399.07 | 1501 | Tuesday, August 28, 2018 | Approved |
Geforce Game Ready Driver 398.82 | 5561 | Thursday, August 2, 2018 | Approved |
Geforce Game Ready Driver 398.36 | 1354 | Wednesday, June 27, 2018 | Approved |
Geforce Game Ready Driver 398.11 | 832 | Tuesday, June 5, 2018 | Approved |
Geforce Game Ready Driver 397.93 | 653 | Friday, May 25, 2018 | Approved |
Geforce Game Ready Driver 397.64 | 706 | Wednesday, May 9, 2018 | Approved |
Geforce Game Ready Driver 397.31 | 1053 | Wednesday, April 25, 2018 | Approved |
Geforce Game Ready Driver 391.35 | 794 | Saturday, March 31, 2018 | Approved |
Geforce Game Ready Driver 391.24 | 1147 | Thursday, March 22, 2018 | Approved |
Geforce Game Ready Driver 391.01 | 1712 | Tuesday, February 27, 2018 | Approved |
Geforce Game Ready Driver 390.77 | 1421 | Tuesday, January 30, 2018 | Approved |
Geforce Game Ready Driver 390.65 | 1076 | Tuesday, January 9, 2018 | Approved |
Geforce Game Ready Driver 388.71 | 591 | Saturday, December 30, 2017 | Approved |
Geforce Game Ready Driver 388.59 | 624 | Thursday, December 14, 2017 | Approved |
Geforce Game Ready Driver 388.43 | 530 | Friday, December 1, 2017 | Approved |
Geforce Game Ready Driver 388.31 | 495 | Saturday, November 18, 2017 | Approved |
Geforce Game Ready Driver 388.13 | 451 | Sunday, November 5, 2017 | Approved |
Geforce Game Ready Driver 388.00 | 507 | Monday, October 30, 2017 | Approved |
Geforce Game Ready Driver 387.92 | 1237 | Monday, October 9, 2017 | Approved |
Geforce Game Ready Driver 385.69 | 534 | Friday, September 22, 2017 | Approved |
Geforce Game Ready Driver 385.41 | 614 | Tuesday, August 29, 2017 | Approved |
Geforce Game Ready Driver 385.28 | 428 | Monday, August 14, 2017 | Approved |
Geforce Game Ready Driver 384.94 | 657 | Friday, July 28, 2017 | Approved |
Geforce Game Ready Driver 384.76 | 967 | Saturday, July 1, 2017 | Approved |
Geforce Game Ready Driver 382.53 | 401 | Thursday, June 22, 2017 | Approved |
Geforce Game Ready Driver 382.33 | 844 | Thursday, May 25, 2017 | Approved |
Geforce Game Ready Driver 382.05 | 749 | Tuesday, May 9, 2017 | Approved |
Geforce Game Ready Driver 381.89 | 661 | Wednesday, April 26, 2017 | Approved |
Geforce Game Ready Driver 381.65.0.20170409 | 1663 | Sunday, April 9, 2017 | Approved |
Geforce Game Ready Driver 381.65.0.20170408 | 663 | Saturday, April 8, 2017 | Approved |
Geforce Game Ready Driver 381.65 | 700 | Saturday, April 8, 2017 | Approved |
Geforce Game Ready Driver 378.92 | 1568 | Wednesday, March 22, 2017 | Approved |
Geforce Game Ready Driver 378.78 | 801 | Sunday, March 12, 2017 | Approved |
Geforce Game Ready Driver 372.70 | 740 | Friday, September 30, 2016 | Approved |
Geforce Game Ready Driver 372.54 | 1071 | Tuesday, August 16, 2016 | Approved |
Geforce Game Ready Driver 368.81 | 1117 | Thursday, July 14, 2016 | Approved |
Geforce Game Ready Driver 368.69 | 325 | Wednesday, July 6, 2016 | Approved |
Geforce Game Ready Driver 368.39 | 298 | Tuesday, June 7, 2016 | Approved |
Geforce Game Ready Driver 368.22 | 314 | Monday, May 23, 2016 | Approved |
Geforce Game Ready Driver 365.19 | 299 | Friday, May 13, 2016 | Approved |
Geforce Game Ready Driver 365.10 | 266 | Monday, May 2, 2016 | Approved |
Geforce Game Ready Driver 364.72 | 430 | Monday, March 28, 2016 | Approved |
Geforce Game Ready Driver 364.51 | 402 | Thursday, March 10, 2016 | Approved |
Geforce Game Ready Driver 362.00 | 297 | Tuesday, March 1, 2016 | Approved |
Geforce Game Ready Driver 361.91 | 301 | Monday, February 15, 2016 | Approved |
Geforce Game Ready Driver 361.75 | 369 | Wednesday, January 27, 2016 | Approved |
Geforce Game Ready Driver 361.43 | 294 | Monday, December 21, 2015 | Approved |
Geforce Game Ready Driver 359.06 | 312 | Tuesday, December 1, 2015 | Approved |
Geforce Game Ready Driver 359.00 | 265 | Thursday, November 19, 2015 | Approved |
Geforce Game Ready Driver 358.91 | 270 | Monday, November 9, 2015 | Approved |
Geforce Game Ready Driver 358.87 | 257 | Wednesday, November 4, 2015 | Approved |
Geforce Game Ready Driver 358.50 | 295 | Wednesday, October 7, 2015 | Approved |
Geforce Game Ready Driver 355.98 | 264 | Tuesday, September 22, 2015 | Approved |
Geforce Game Ready Driver 355.82 | 287 | Monday, August 31, 2015 | Approved |
Geforce Game Ready Driver 355.60 | 307 | Thursday, August 13, 2015 | Approved |
Geforce Game Ready Driver 353.62 | 295 | Wednesday, July 29, 2015 | Approved |
Geforce Game Ready Driver 353.30 | 333 | Monday, June 22, 2015 | Approved |
Geforce Game Ready Driver 353.06 | 298 | Monday, June 1, 2015 | Approved |
Geforce Game Ready Driver 352.86 | 535 | Monday, May 18, 2015 | Approved |
Geforce Game Ready Driver 350.12 | 359 | Monday, April 13, 2015 | Approved |
Geforce Game Ready Driver 347.88 | 445 | Tuesday, March 17, 2015 | Approved |
Geforce Game Ready Driver 347.52 | 335 | Sunday, March 1, 2015 | Approved |
Geforce Game Ready Driver 340.43-beta | 270 | Sunday, April 12, 2015 | Exempted |
This package has no dependencies.
Ground Rules:
- This discussion is only about Geforce Game Ready Driver and the Geforce Game Ready Driver package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Geforce Game Ready Driver, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.