Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,469,542

Downloads of v 397.31:

920

Last Update:

25 Apr 2018

Package Maintainer(s):

Software Author(s):

  • NVIDIA

Tags:

graphics card driver geforce nvidia admin

NVidia Display Driver

This is not the latest version of NVidia Display Driver available.

  • 1
  • 2
  • 3

397.31 | Updated: 25 Apr 2018

Downloads:

2,469,542

Downloads of v 397.31:

920

Maintainer(s):

Software Author(s):

  • NVIDIA

NVidia Display Driver 397.31

This is not the latest version of NVidia Display Driver available.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

This package requires NVidia hardware, and cannot pass the validator

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

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://community.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

3. Copy Your Script

choco upgrade nvidia-display-driver -y --source="'INTERNAL REPO URL'" --version="'397.31'" [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="'INTERNAL REPO URL'" --version="'397.31'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install nvidia-display-driver
  win_chocolatey:
    name: nvidia-display-driver
    version: '397.31'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'nvidia-display-driver' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '397.31'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller nvidia-display-driver
{
    Name     = "nvidia-display-driver"
    Version  = "397.31"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'nvidia-display-driver':
  ensure   => '397.31',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 25 Apr 2018.

Description

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.


tools\chocolateyinstall.ps1
$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/397.31/397.31-desktop-win10-64bit-international-whql.exe'
	checksum64     = '198ff2081be6a74140696c4e39b3071e32ba31f96edb7c910a3c4942e5b9856a'
	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/397.31/397.31-desktop-win8-win7-64bit-international-whql.exe'
	$packageArgs['checksum64'] = 'c203e365b09e20e2322a114c4f50af8070893ca9ee5238755e2766cab733d8b3'
}

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

# 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"
$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
tools\chocolateyuninstall.ps1
$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.

Add to Builder Version Downloads Last Updated Status
NVidia Display Driver 551.61 8336 Friday, February 23, 2024 Approved
NVidia Display Driver 551.52 6848 Wednesday, February 14, 2024 Approved
NVidia Display Driver 551.23 15661 Thursday, January 25, 2024 Approved
NVidia Display Driver 546.65.0.20240120 5006 Saturday, January 20, 2024 Approved
NVidia Display Driver 546.65 5720 Thursday, January 18, 2024 Approved
NVidia Display Driver 546.33 20903 Wednesday, December 13, 2023 Approved
NVidia Display Driver 546.29 6518 Tuesday, December 5, 2023 Approved
NVidia Display Driver 546.17 14402 Wednesday, November 15, 2023 Approved
NVidia Display Driver 546.01 9990 Wednesday, November 1, 2023 Approved
NVidia Display Driver 545.92 5320 Friday, October 27, 2023 Approved
NVidia Display Driver 545.84 7357 Wednesday, October 18, 2023 Approved
NVidia Display Driver 537.58 6235 Wednesday, October 11, 2023 Approved
NVidia Display Driver 537.42 14377 Friday, September 22, 2023 Approved
NVidia Display Driver 537.34 7052 Wednesday, September 13, 2023 Approved
NVidia Display Driver 537.13 17059 Tuesday, August 22, 2023 Approved
NVidia Display Driver 536.99 13075 Wednesday, August 9, 2023 Approved
NVidia Display Driver 536.67 16556 Wednesday, July 19, 2023 Approved
NVidia Display Driver 536.40 14183 Friday, June 30, 2023 Approved
NVidia Display Driver 536.23 10663 Thursday, June 15, 2023 Approved
NVidia Display Driver 535.98 11434 Wednesday, May 31, 2023 Approved
NVidia Display Driver 532.03 5458 Thursday, May 25, 2023 Approved
NVidia Display Driver 531.79 17648 Wednesday, May 3, 2023 Approved
NVidia Display Driver 531.68 11315 Wednesday, April 19, 2023 Approved
NVidia Display Driver 531.61 5120 Friday, April 14, 2023 Approved
NVidia Display Driver 531.41 16802 Friday, March 24, 2023 Approved
NVidia Display Driver 531.29 8927 Tuesday, March 14, 2023 Approved
NVidia Display Driver 531.18 11273 Wednesday, March 1, 2023 Approved
NVidia Display Driver 528.49 15653 Thursday, February 9, 2023 Approved
NVidia Display Driver 528.24 12518 Wednesday, January 25, 2023 Approved
NVidia Display Driver 528.02 15418 Friday, January 6, 2023 Approved
NVidia Display Driver 527.56 21169 Friday, December 9, 2022 Approved
NVidia Display Driver 527.37 7764 Friday, December 2, 2022 Approved
NVidia Display Driver 526.98 19185 Thursday, November 17, 2022 Approved
NVidia Display Driver 526.86 9632 Friday, November 11, 2022 Approved
NVidia Display Driver 526.47 15059 Friday, October 28, 2022 Approved
NVidia Display Driver 522.25 14255 Thursday, October 13, 2022 Approved
NVidia Display Driver 517.48 14935 Wednesday, September 28, 2022 Approved
NVidia Display Driver 516.94 38161 Wednesday, August 10, 2022 Approved
NVidia Display Driver 516.59 34092 Wednesday, June 29, 2022 Approved
NVidia Display Driver 516.40 12710 Thursday, June 16, 2022 Approved
NVidia Display Driver 512.95 20344 Wednesday, May 25, 2022 Approved
NVidia Display Driver 512.77 13227 Friday, May 13, 2022 Approved
NVidia Display Driver 512.59 17442 Wednesday, April 27, 2022 Approved
NVidia Display Driver 512.15 41549 Wednesday, March 23, 2022 Approved
NVidia Display Driver 511.79 47713 Tuesday, February 15, 2022 Approved
NVidia Display Driver 511.65 20472 Wednesday, February 2, 2022 Approved
NVidia Display Driver 511.23 31946 Friday, January 14, 2022 Approved
NVidia Display Driver 497.29 28881 Tuesday, December 21, 2021 Approved
NVidia Display Driver 497.09 21838 Thursday, December 2, 2021 Approved
NVidia Display Driver 496.76 18620 Wednesday, November 17, 2021 Approved
NVidia Display Driver 496.49 31154 Wednesday, October 27, 2021 Approved
NVidia Display Driver 496.13 22638 Wednesday, October 13, 2021 Approved
NVidia Display Driver 472.12 34631 Tuesday, September 21, 2021 Approved
NVidia Display Driver 471.96.0.20210919 3762 Sunday, September 19, 2021 Approved
NVidia Display Driver 471.96 25646 Wednesday, September 1, 2021 Approved
NVidia Display Driver 471.68 33033 Wednesday, August 11, 2021 Approved
NVidia Display Driver 471.41 98370 Tuesday, July 20, 2021 Approved
NVidia Display Driver 471.11 298197 Wednesday, June 23, 2021 Approved
NVidia Display Driver 466.77 157008 Friday, June 11, 2021 Approved
NVidia Display Driver 466.63 85823 Friday, June 4, 2021 Approved
NVidia Display Driver 466.47 166294 Wednesday, May 19, 2021 Approved
NVidia Display Driver 466.27 141418 Friday, April 30, 2021 Approved
NVidia Display Driver 466.11 141138 Thursday, April 15, 2021 Approved
NVidia Display Driver 465.89 128729 Wednesday, March 31, 2021 Approved
NVidia Display Driver 461.92 110633 Wednesday, March 17, 2021 Approved
NVidia Display Driver 461.72 52425 Friday, February 26, 2021 Approved
NVidia Display Driver 461.40 8542 Wednesday, January 27, 2021 Approved
NVidia Display Driver 461.09 2814 Friday, January 8, 2021 Approved
NVidia Display Driver 460.89 2919 Wednesday, December 16, 2020 Approved
NVidia Display Driver 460.79 1616 Thursday, December 10, 2020 Approved
NVidia Display Driver 457.51 1666 Thursday, December 3, 2020 Approved
NVidia Display Driver 457.30 3060 Tuesday, November 10, 2020 Approved
NVidia Display Driver 457.09 2100 Friday, October 30, 2020 Approved
NVidia Display Driver 456.71 2633 Thursday, October 8, 2020 Approved
NVidia Display Driver 456.55 1633 Tuesday, September 29, 2020 Approved
NVidia Display Driver 456.38 1724 Friday, September 18, 2020 Approved
NVidia Display Driver 452.06 3072 Tuesday, August 18, 2020 Approved
NVidia Display Driver 451.67 3249 Friday, July 10, 2020 Approved
NVidia Display Driver 451.48 2144 Thursday, June 25, 2020 Approved
NVidia Display Driver 446.14 2765 Thursday, May 28, 2020 Approved
NVidia Display Driver 445.87 3421 Wednesday, April 15, 2020 Approved
NVidia Display Driver 445.75 2082 Tuesday, March 24, 2020 Approved
NVidia Display Driver 442.74 940 Friday, March 20, 2020 Approved
NVidia Display Driver 442.59 1351 Wednesday, March 11, 2020 Approved
NVidia Display Driver 442.50 3594 Friday, February 28, 2020 Approved
NVidia Display Driver 442.19 2281 Tuesday, February 4, 2020 Approved
NVidia Display Driver 441.87 2817 Tuesday, January 7, 2020 Approved
NVidia Display Driver 441.66 2642 Wednesday, December 11, 2019 Approved
NVidia Display Driver 441.41 1673 Wednesday, November 27, 2019 Approved
NVidia Display Driver 441.20 1798 Tuesday, November 12, 2019 Approved
NVidia Display Driver 441.12 1164 Tuesday, November 5, 2019 Approved
NVidia Display Driver 441.08 1005 Wednesday, October 30, 2019 Approved
NVidia Display Driver 440.97.0.20191028 447 Monday, October 28, 2019 Approved
NVidia Display Driver 440.97 1726 Wednesday, October 23, 2019 Approved
NVidia Display Driver 436.48 2121 Wednesday, October 2, 2019 Approved
NVidia Display Driver 436.30 4380 Wednesday, September 11, 2019 Approved
NVidia Display Driver 436.15 2144 Wednesday, August 28, 2019 Approved
NVidia Display Driver 436.02 458 Tuesday, August 27, 2019 Approved
NVidia Display Driver 431.60 2953 Tuesday, July 23, 2019 Approved
NVidia Display Driver 431.36 1450 Wednesday, July 10, 2019 Approved
NVidia Display Driver 430.86 3149 Tuesday, May 28, 2019 Approved
NVidia Display Driver 430.64 17976 Friday, May 10, 2019 Approved
NVidia Display Driver 430.39 1577 Wednesday, April 24, 2019 Approved
NVidia Display Driver 425.31 1416 Thursday, April 11, 2019 Approved
NVidia Display Driver 419.67 1536 Tuesday, March 26, 2019 Approved
NVidia Display Driver 419.35.0.20190325 301 Monday, March 25, 2019 Approved
NVidia Display Driver 419.35.0.20190324 288 Sunday, March 24, 2019 Approved
NVidia Display Driver 419.35.0.20190323 313 Saturday, March 23, 2019 Approved
NVidia Display Driver 419.35 1201 Wednesday, March 6, 2019 Approved
NVidia Display Driver 419.17 887 Saturday, February 23, 2019 Approved
NVidia Display Driver 418.91 1011 Thursday, February 14, 2019 Approved
NVidia Display Driver 418.81 1043 Tuesday, February 5, 2019 Approved
NVidia Display Driver 417.71 1620 Tuesday, January 15, 2019 Approved
NVidia Display Driver 417.35.0.20181228 1031 Saturday, December 29, 2018 Approved
NVidia Display Driver 417.35 1135 Thursday, December 13, 2018 Approved
NVidia Display Driver 417.22 1034 Tuesday, December 4, 2018 Approved
NVidia Display Driver 417.01.0.20181202 296 Sunday, December 2, 2018 Approved
NVidia Display Driver 417.01 747 Tuesday, November 27, 2018 Approved
NVidia Display Driver 416.94 1137 Wednesday, November 14, 2018 Approved
NVidia Display Driver 416.81 553 Friday, November 9, 2018 Approved
NVidia Display Driver 416.34 1360 Friday, October 12, 2018 Approved
NVidia Display Driver 411.70 744 Friday, September 28, 2018 Approved
NVidia Display Driver 411.63 542 Thursday, September 20, 2018 Approved
NVidia Display Driver 399.24 847 Tuesday, September 11, 2018 Approved
NVidia Display Driver 399.07 662 Tuesday, August 28, 2018 Approved
NVidia Display Driver 398.82 853 Thursday, August 2, 2018 Approved
NVidia Display Driver 398.36.0.20180629 1075 Saturday, June 30, 2018 Approved
NVidia Display Driver 398.36 623 Wednesday, June 27, 2018 Approved
NVidia Display Driver 398.11 3153 Tuesday, June 5, 2018 Approved
NVidia Display Driver 397.93 1300 Friday, May 25, 2018 Approved
NVidia Display Driver 397.64 776 Wednesday, May 9, 2018 Approved
NVidia Display Driver 397.31 920 Wednesday, April 25, 2018 Approved
NVidia Display Driver 391.35 800 Saturday, March 31, 2018 Approved
NVidia Display Driver 391.24 585 Thursday, March 22, 2018 Approved
NVidia Display Driver 391.01 661 Tuesday, February 27, 2018 Approved
NVidia Display Driver 390.77 682 Tuesday, January 30, 2018 Approved
NVidia Display Driver 390.65 631 Tuesday, January 9, 2018 Approved
NVidia Display Driver 388.71 571 Saturday, December 30, 2017 Approved
NVidia Display Driver 388.59 592 Thursday, December 14, 2017 Approved
NVidia Display Driver 388.43 576 Friday, December 1, 2017 Approved
NVidia Display Driver 388.31.0.20171117 554 Saturday, November 18, 2017 Approved
NVidia Display Driver 388.31 336 Saturday, November 18, 2017 Approved
NVidia Display Driver 388.13 573 Sunday, November 5, 2017 Approved
NVidia Display Driver 388.00 530 Monday, October 30, 2017 Approved
NVidia Display Driver 387.92 537 Monday, October 9, 2017 Approved
NVidia Display Driver 385.69 541 Friday, September 22, 2017 Approved
NVidia Display Driver 385.41 575 Tuesday, August 29, 2017 Approved
NVidia Display Driver 385.28 475 Friday, August 18, 2017 Approved
NVidia Display Driver 384.94 491 Friday, July 28, 2017 Approved
NVidia Display Driver 384.76 409 Monday, July 10, 2017 Approved
NVidia Display Driver 382.53 438 Friday, June 23, 2017 Approved
NVidia Display Driver 382.33 376 Thursday, May 25, 2017 Approved
NVidia Display Driver 382.05 468 Tuesday, May 9, 2017 Approved
NVidia Display Driver 381.89 462 Wednesday, April 26, 2017 Approved
NVidia Display Driver 381.65 400 Saturday, April 8, 2017 Approved
Discussion for the NVidia Display Driver Package

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.
comments powered by Disqus