How to Install an Updated Driver For NVIDIA Graphics Cards

(0 votes, average 0 out of 5)

Whether you are putting a new graphics card into your computer or just want to update the driver, it is recommended that you visit the Manufacturers website. Here you will receive the latest update that will include many enhancements and improvements. Follow these steps to install the latest driver on your computer:

  1. Make sure your graphics card is installed or recognized by the system.
  2. Open up a web browser, like Internet Explorer, Mozilla Firefox, or Google Chrome, and visit http://www.nvidia.com.
  3. Once the web page loads, select your country. 
  4. After you have selected your country, you will be taken to a new webpage. On this page, look for a link or button labeled 'Download Drivers'. Once found, click on that link.
  5. This is the NVIDIA drivers page. This page will sort through all of their drivers to find the one that is right for you. To do this use the form to select the fields that correspond to your computer. Then select search.

    nvidia1
     
  6. Once your driver has been found, select the download button and wait for the download to finish. Once completed, run this setup file.

    nvidia2
     
  7. After setup completes, restart your computer. After the computer has been restarted, your driver has been installed. You may now delete the file you downloaded in step 6.
Partner Links:
Last Updated on Sunday, 11 July 2010 18:30  
Related Articles

» How to Change the Shutdown Button in the Windows 7 Start Menu

Changing the Shut Down button in the Windows 7 start menu is very easy!You can change this button to any of the following: Log offSleep Switch UserLockRestartShut downTo change the button follow these simple steps:Right click on the Windows 7 task bar. Select Properties.Select the Start Menu tab. You will see a window like the one below. Change the Power button action to the option you'd like.Hit the Apply button and close the window. Your power button on the start menu...

» How to Show Filename in Title Bar in Emacs

Adding the following snippet into your .emacs file (typically located in your home directory) will cause the filename of the current buffer to appear in the title bar.  This is a quick fix that can make managing multiple emacs windows much easier. ;; Show filename in title bar(setq frame-title-format "%b - Emacs") 

» Customizing File Association in Emacs (based on file extension)

Occassionally it can be useful to have emacs automatically use a particular syntax highlighter based on file extension.  Typically this is useful when you want to use non-stnadard file extensions in your own environment.  You can get it to work by adding the following to your .emacs file (typically located in your home directory):;; Use perl syntax highlighter for .foo files.(setq auto-mode-alist (cons '(".*\.foo" . cperl-mode) auto-mode-alist))The above code would use the cperl...