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...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
137,901
Downloads of v 417.35:
1,043
Last Update:
13 Dec 2018
Package Maintainer(s):
Software Author(s):
- NVIDIA
Tags:
graphics card driver geforce nvidia 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

NVidia Display Driver
This is not the latest version of NVidia Display 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:
137,901
Downloads of v 417.35:
1,043
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.
NVidia Display Driver 417.35
This is not the latest version of NVidia Display Driver available.
This Package Contains an Exempted Check
1 Test Passing and 1 Exempted Test
Validation Testing Passed
Verification Testing Exempt:
This package requires NVidia hardware, and cannot pass the validator
To install NVidia Display Driver, run the following command from the command line or from PowerShell:
To upgrade NVidia Display Driver, run the following command from the command line or from PowerShell:
To uninstall NVidia Display 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 nvidia-display-driver --internalize --version=417.35 --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 nvidia-display-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 nvidia-display-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 nvidia-display-driver installed
win_chocolatey:
name: nvidia-display-driver
state: present
version: 417.35
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 'nvidia-display-driver' do
action :install
version '417.35'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: nvidia-display-driver,
Version: 417.35,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller nvidia-display-driver
{
Name = 'nvidia-display-driver'
Ensure = 'Present'
Version = '417.35'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'nvidia-display-driver':
provider => 'chocolatey',
ensure => '417.35',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install nvidia-display-driver version="417.35" 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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 13 Dec 2018.
This package strips all components out of the upstream NVidia driver package except the following:
- Display.Driver
- Display.Optimus
- PhysX
Package Parameters
The following package parameters can be set for enable optionnal display components:
/HDAudio
- Install Nvidia HD Audio driver (HDMI audio driver)./NV3DVision
- Install 3DVision driver.
These parameters can be passed to the installer with the use of --params
.
For example: --params "'/HDAudio /NV3DVision'"
.
If you need support for non display related components (Shield, Geforce Experience, ...), install the geforce-game-ready-driver instead.
$instDir = "${ENV:TEMP}\nvidiainstall" # Folder to move desired components into
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = 'nvidia-display-driver'
destination = "${ENV:TEMP}\nvidiadriver" # Folder to extract drivers
url64 = 'https://us.download.nvidia.com/Windows/417.35/417.35-desktop-win10-64bit-international-whql.exe'
checksum64 = 'c12a12de55e6d45babbaf3705fa78d761c1888ed51592232adc75da5d3918cf1'
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/417.35/417.35-desktop-win8-win7-64bit-international-whql.exe'
$packageArgs['checksum64'] = '73a3a24c2eec5975e28bf97c3d1a09f87a577523bebc981afb3cb6d7edf3d130'
}
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."
}
# Remove any previous tempfiles
Remove-Item "$instDir" -Recurse -Force -ea 0
New-Item -Path "$instDir" -ItemType Directory
New-Item -Path "$instDir\GFExperience" -ItemType Directory
# Download driver package as a zip
$packageArgs['file'] = "${ENV:TEMP}\nvidiadriver.zip"
Get-ChocolateyWebFile @packageArgs
# Unzip driver package
Get-ChocolateyUnzip @packageArgs
# Inclusive filter
Move-Item ($packageArgs['destination'] + "\Display.Driver" ) -Destination "$instDir"
Move-Item ($packageArgs['destination'] + "\Display.Optimus" ) -Destination "$instDir"
Move-Item ($packageArgs['destination'] + "\NVI2" ) -Destination "$instDir"
Move-Item ($packageArgs['destination'] + "\PhysX" ) -Destination "$instDir"
Move-Item ($packageArgs['destination'] + "\EULA.txt" ) -Destination "$instDir"
Move-Item ($packageArgs['destination'] + "\license.txt" ) -Destination "$instDir"
Move-Item ($packageArgs['destination'] + "\ListDevices.txt" ) -Destination "$instDir"
Move-Item ($packageArgs['destination'] + "\setup.cfg" ) -Destination "$instDir"
Move-Item ($packageArgs['destination'] + "\setup.exe" ) -Destination "$instDir"
Move-Item ($packageArgs['destination'] + "\GFExperience\PrivacyPolicy" ) -Destination "$instDir\GFExperience"
Move-Item ($packageArgs['destination'] + "\GFExperience\EULA.html" ) -Destination "$instDir\GFExperience"
Move-Item ($packageArgs['destination'] + "\GFExperience\FunctionalConsent_*") -Destination "$instDir\GFExperience"
$pp = Get-PackageParameters
if ( $pp.NV3DVision ) {
Move-Item ($packageArgs['destination'] + "\NV3DVision" ) -Destination "$instDir"
Move-Item ($packageArgs['destination'] + "\NV3DVisionUSB.Driver") -Destination "$instDir"
}
if ( $pp.HDAudio ) {
Move-Item ($packageArgs['destination'] + "\HDAudio" ) -Destination "$instDir"
}
# Remove unused files
Remove-Item ($packageArgs['destination']) -Recurse -Force
# Finally, install
$packageArgs['file' ] = "$instDir\setup.exe"
$packageArgs['fileType'] = 'EXE'
Install-ChocolateyInstallPackage @packageArgs
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = 'nvidia-display-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 |
---|---|---|---|
NVidia Display Driver 461.72 | 3138 | Friday, February 26, 2021 | Approved |
NVidia Display Driver 461.40 | 8353 | Wednesday, January 27, 2021 | Approved |
NVidia Display Driver 461.09 | 2692 | Friday, January 8, 2021 | Approved |
NVidia Display Driver 460.89 | 2835 | Wednesday, December 16, 2020 | Approved |
NVidia Display Driver 460.79 | 1520 | Thursday, December 10, 2020 | Approved |
NVidia Display Driver 457.51 | 1583 | Thursday, December 3, 2020 | Approved |
NVidia Display Driver 457.30 | 2975 | Tuesday, November 10, 2020 | Approved |
NVidia Display Driver 457.09 | 2000 | Friday, October 30, 2020 | Approved |
NVidia Display Driver 456.71 | 2528 | Thursday, October 8, 2020 | Approved |
NVidia Display Driver 456.55 | 1549 | Tuesday, September 29, 2020 | Approved |
NVidia Display Driver 456.38 | 1642 | Friday, September 18, 2020 | Approved |
NVidia Display Driver 452.06 | 2979 | Tuesday, August 18, 2020 | Approved |
NVidia Display Driver 451.67 | 3159 | Friday, July 10, 2020 | Approved |
NVidia Display Driver 451.48 | 2051 | Thursday, June 25, 2020 | Approved |
NVidia Display Driver 446.14 | 2652 | Thursday, May 28, 2020 | Approved |
NVidia Display Driver 445.87 | 3308 | Wednesday, April 15, 2020 | Approved |
NVidia Display Driver 445.75 | 1970 | Tuesday, March 24, 2020 | Approved |
NVidia Display Driver 442.74 | 833 | Friday, March 20, 2020 | Approved |
NVidia Display Driver 442.59 | 1259 | Wednesday, March 11, 2020 | Approved |
NVidia Display Driver 442.50 | 3457 | Friday, February 28, 2020 | Approved |
NVidia Display Driver 442.19 | 2198 | Tuesday, February 4, 2020 | Approved |
NVidia Display Driver 441.87 | 2717 | Tuesday, January 7, 2020 | Approved |
NVidia Display Driver 441.66 | 2554 | Wednesday, December 11, 2019 | Approved |
NVidia Display Driver 441.41 | 1582 | Wednesday, November 27, 2019 | Approved |
NVidia Display Driver 441.20 | 1695 | Tuesday, November 12, 2019 | Approved |
NVidia Display Driver 441.12 | 1075 | Tuesday, November 5, 2019 | Approved |
NVidia Display Driver 441.08 | 912 | Wednesday, October 30, 2019 | Approved |
NVidia Display Driver 440.97.0.20191028 | 343 | Monday, October 28, 2019 | Approved |
NVidia Display Driver 440.97 | 1641 | Wednesday, October 23, 2019 | Approved |
NVidia Display Driver 436.48 | 2020 | Wednesday, October 2, 2019 | Approved |
NVidia Display Driver 436.30 | 4272 | Wednesday, September 11, 2019 | Approved |
NVidia Display Driver 436.15 | 2026 | Wednesday, August 28, 2019 | Approved |
NVidia Display Driver 436.02 | 341 | Tuesday, August 27, 2019 | Approved |
NVidia Display Driver 431.60 | 2855 | Tuesday, July 23, 2019 | Approved |
NVidia Display Driver 431.36 | 1362 | Wednesday, July 10, 2019 | Approved |
NVidia Display Driver 430.86 | 3033 | Tuesday, May 28, 2019 | Approved |
NVidia Display Driver 430.64 | 17872 | Friday, May 10, 2019 | Approved |
NVidia Display Driver 430.39 | 1467 | Wednesday, April 24, 2019 | Approved |
NVidia Display Driver 425.31 | 1285 | Thursday, April 11, 2019 | Approved |
NVidia Display Driver 419.67 | 1412 | Tuesday, March 26, 2019 | Approved |
NVidia Display Driver 419.35.0.20190325 | 226 | Monday, March 25, 2019 | Approved |
NVidia Display Driver 419.35.0.20190324 | 214 | Sunday, March 24, 2019 | Approved |
NVidia Display Driver 419.35.0.20190323 | 207 | Saturday, March 23, 2019 | Approved |
NVidia Display Driver 419.35 | 1111 | Wednesday, March 6, 2019 | Approved |
NVidia Display Driver 419.17 | 772 | Saturday, February 23, 2019 | Approved |
NVidia Display Driver 418.91 | 894 | Thursday, February 14, 2019 | Approved |
NVidia Display Driver 418.81 | 963 | Tuesday, February 5, 2019 | Approved |
NVidia Display Driver 417.71 | 1530 | Tuesday, January 15, 2019 | Approved |
NVidia Display Driver 417.35.0.20181228 | 940 | Saturday, December 29, 2018 | Approved |
NVidia Display Driver 417.35 | 1043 | Thursday, December 13, 2018 | Approved |
NVidia Display Driver 417.22 | 918 | Tuesday, December 4, 2018 | Approved |
NVidia Display Driver 417.01.0.20181202 | 215 | Sunday, December 2, 2018 | Approved |
NVidia Display Driver 417.01 | 644 | Tuesday, November 27, 2018 | Approved |
NVidia Display Driver 416.94 | 1030 | Wednesday, November 14, 2018 | Approved |
NVidia Display Driver 416.81 | 445 | Friday, November 9, 2018 | Approved |
NVidia Display Driver 416.34 | 1250 | Friday, October 12, 2018 | Approved |
NVidia Display Driver 411.70 | 645 | Friday, September 28, 2018 | Approved |
NVidia Display Driver 411.63 | 434 | Thursday, September 20, 2018 | Approved |
NVidia Display Driver 399.24 | 746 | Tuesday, September 11, 2018 | Approved |
NVidia Display Driver 399.07 | 552 | Tuesday, August 28, 2018 | Approved |
NVidia Display Driver 398.82 | 758 | Thursday, August 2, 2018 | Approved |
NVidia Display Driver 398.36.0.20180629 | 991 | Saturday, June 30, 2018 | Approved |
NVidia Display Driver 398.36 | 523 | Wednesday, June 27, 2018 | Approved |
NVidia Display Driver 398.11 | 3053 | Tuesday, June 5, 2018 | Approved |
NVidia Display Driver 397.93 | 1180 | Friday, May 25, 2018 | Approved |
NVidia Display Driver 397.64 | 665 | Wednesday, May 9, 2018 | Approved |
NVidia Display Driver 397.31 | 813 | Wednesday, April 25, 2018 | Approved |
NVidia Display Driver 391.35 | 663 | Saturday, March 31, 2018 | Approved |
NVidia Display Driver 391.24 | 489 | Thursday, March 22, 2018 | Approved |
NVidia Display Driver 391.01 | 553 | Tuesday, February 27, 2018 | Approved |
NVidia Display Driver 390.77 | 593 | Tuesday, January 30, 2018 | Approved |
NVidia Display Driver 390.65 | 536 | Tuesday, January 9, 2018 | Approved |
NVidia Display Driver 388.71 | 468 | Saturday, December 30, 2017 | Approved |
NVidia Display Driver 388.59 | 499 | Thursday, December 14, 2017 | Approved |
NVidia Display Driver 388.43 | 450 | Friday, December 1, 2017 | Approved |
NVidia Display Driver 388.31.0.20171117 | 460 | Saturday, November 18, 2017 | Approved |
NVidia Display Driver 388.31 | 240 | Saturday, November 18, 2017 | Approved |
NVidia Display Driver 388.13 | 452 | Sunday, November 5, 2017 | Approved |
NVidia Display Driver 388.00 | 450 | Monday, October 30, 2017 | Approved |
NVidia Display Driver 387.92 | 448 | Monday, October 9, 2017 | Approved |
NVidia Display Driver 385.69 | 456 | Friday, September 22, 2017 | Approved |
NVidia Display Driver 385.41 | 470 | Tuesday, August 29, 2017 | Approved |
NVidia Display Driver 385.28 | 373 | Friday, August 18, 2017 | Approved |
NVidia Display Driver 384.94 | 410 | Friday, July 28, 2017 | Approved |
NVidia Display Driver 384.76 | 318 | Monday, July 10, 2017 | Approved |
NVidia Display Driver 382.53 | 340 | Friday, June 23, 2017 | Approved |
NVidia Display Driver 382.33 | 286 | Thursday, May 25, 2017 | Approved |
NVidia Display Driver 382.05 | 378 | Tuesday, May 9, 2017 | Approved |
NVidia Display Driver 381.89 | 353 | Wednesday, April 26, 2017 | Approved |
NVidia Display Driver 381.65 | 309 | Saturday, April 8, 2017 | Approved |
-
- chocolatey-core.extension (≥ 1.1.0)
Ground Rules:
- This discussion is only about NVidia Display Driver and the NVidia Display 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 NVidia Display 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.