How to restart your graphics driver in Windows?

Lakshmi Madhu

Lakshmi Madhu

Marketing Team

| 7 mins read

Published

9th March 2026

Last Update

16th March 2026

Explore this content with AI:

For Windows users, few things are more frustrating than a display that suddenly freezes, flickers, or glitches while the computer is otherwise running perfectly. Often, the instinct is to perform a hard reboot of the entire system, disrupting workflow and potentially losing data. However, there is a faster, less intrusive solution: restarting the graphics driver.

This process, often called resetting the video driver, reinitializes the connection between your operating system and your Graphics Processing Unit (GPU) without shutting down the PC. 

Whether you are a gamer facing frame drops or an IT professional managing a fleet of devices, knowing how to restart the graphics driver is an essential troubleshooting skill. This guide covers every method to restart graphics drivers on Windows 10 and 11, ranging from instant keyboard shortcuts to advanced command-line techniques.

What does restarting a graphics driver actually do?

Restarting a graphics driver essentially forces the Windows display subsystem to crash and immediately recover. Technically, this interacts with the Windows Display Driver Model (WDDM). When you trigger a restart, the operating system momentarily suspends the GPU, clears the video memory (VRAM), and reloads the driver files.

This process is often linked to a mechanism known as Timeout Detection and Recovery (TDR). Windows is designed to detect when the graphics card stops responding for a specific period (usually two seconds). When this happens, Windows attempts to reset the driver to prevent a "Blue Screen of Death" (BSOD). 

What are the common signs you need to restart your graphics driver?

Why you need to restart the graphics drive.webp

Before diving into the methods to restart graphics driver, it is important to identify when a driver reset is the appropriate solution. If your computer is completely unresponsive (including audio and mouse input), a full system reboot might be necessary. However, if the system is running but the visual output is compromised, a driver restart is the best first step.

  • Screen flickering or glitching: If your monitor is blinking on and off, or if elements of the user interface are strobing, the driver may be struggling to maintain a stable refresh rate or resolution. A quick reset often stabilizes the signal sent to the display.

  • Frozen display or black screen: A common scenario occurs when the audio from a video or game continues to play, but the visual image remains frozen or turns completely black. This indicates that the operating system is functioning, but the graphics driver has failed to render new frames.

  • Poor gaming or application performance: You may experience sudden drops in Frames Per Second (FPS) or stuttering in 3D applications. This can happen after waking the computer from sleep mode, where the GPU fails to ramp up to its required clock speeds. Restarting the driver can re-initialize the power states.

  • Visual artifacts and distortions: Artifacts, such as strange colored squares, stretched textures, or "tearing" on the screen, can signal driver corruption or overheating. A restart can rule out software corruption; however, persistent artifacts often indicate physical hardware damage.

What is the difference between Restarting vs. Updating vs. Reinstalling?

It is crucial to distinguish between restarting a driver and updating or reinstalling one. Restarting is a temporary maintenance step, whereas updating and reinstalling are permanent changes to the system files.

Action

Purpose

Effect

Time Required

When to Use

Restarting

Reboot the system or application

Clears temporary memory, refreshes services

Few seconds to minutes

Fix minor glitches, apply minor settings changes

Updating

Install latest software or system version

Adds new features, patches security vulnerabilities, fixes bugs

Minutes to longer (depending on update size)

Stay secure, get new features, fix known issues

Reinstalling

Remove and install software/system from scratch

Resets settings, removes corrupted files, restores default state

Longer, may require backup/restoration

Fix persistent errors, clean installation, system recovery

Methods to restart graphics driver

Method 1: The instant keyboard shortcut (Fastest Method)

Windows 10 and Windows 11 include a built-in hotkey to quickly restart the graphics driver. This is the fastest and safest way to fix display issues.

How to use the Win + Ctrl + Shift + B shortcut

To perform the reset, press the following four keys simultaneously:

Windows Key + Ctrl + Shift + B

This command works across all GPU manufacturers (NVIDIA, AMD, Intel) and is hard-coded into the operating system.

What to expect when you press the Shortcut keys

Upon pressing the combination, you will experience the following:

  • A Beep: The computer may emit a short audible beep confirming the command was received.

  • Black Screen: The screen will flash black for approximately 1 to 2 seconds.

  • Restoration: The display will return to normal as the driver re-initializes.

Note: This method does not close your open applications, but 3D applications (like games or rendering software) may crash if they cannot handle the sudden interruption of the GPU driver.

Method 2: Restarting through the device manager

If the keyboard shortcut doesn’t work, or if you need to restart a specific GPU in a multi-GPU system (like a laptop with both integrated and dedicated graphics), Device Manager provides precise control.

  • Right-click the Start button and select Device Manager.

  • Locate and expand the Display adapters section.

  • Right-click on your graphics card (e.g., NVIDIA GeForce RTX 3060 or Intel UHD Graphics).

  • Select Disable device.

  • Your screen may flicker or change resolution; click Yes to confirm.

  • Wait for 5–10 seconds to ensure the driver has fully unloaded.

  • Right-click the same device again and select Enable device.

When to Use Device Manager over the Keyboard Shortcut

Device Manager is preferred when the keyboard shortcut fails to trigger a response. It is also useful for troubleshooting distinct hardware. For example, if you suspect your dedicated NVIDIA card is causing issues but your integrated Intel chip is fine, you can specifically target the NVIDIA card in Device Manager without disrupting the Intel driver.

Method 3: Using PowerShell or Command Prompt (Advanced)

For IT administrators managing remote computers or users who prefer command-line interfaces, PowerShell (PNPUtil) or Command Prompt offers a robust way to restart drivers without navigating graphical menus.

Finding your graphics card's device name

Before restarting a GPU via PowerShell, you need to identify its Instance ID.

  • Press Windows + X and select Windows PowerShell (Admin) or Terminal (Admin).

  • Type the following command and press Enter:pnputil /enum-devices /class Display

  • Locate your GPU in the list and copy the Instance ID (it will be a long string of alphanumeric characters).

Executing the Restart Command in PowerShell

Once you have the ID, you can force the device to restart. Use the following command syntax:

pnputil /restart-device "YOUR_INSTANCE_ID_HERE"

Alternatively, if you want to simply disable and re-enable all display devices via a script (using the PnPDevice cmdlet), you can use:

Get-PnpDevice -Class Display | Disable-PnpDevice -Confirm:$false(Wait a few seconds)Get-PnpDevice -Class Display | Enable-PnpDevice -Confirm:$false

This method is highly effective for scripting automated fixes for known display issues in an enterprise environment.

Method 4: Using manufacturer-specific software

Beyond Windows system functions, GPU manufacturers offer dedicated control panels to reset driver settings. These tools can fix issues caused by corrupted profiles, misconfigured settings, or driver conflicts.

For NVIDIA GPUs: Using the NVIDIA Control Panel

  • Right-click on the desktop and open the NVIDIA Control Panel.

  • Navigate to Manage 3D Settings.

  • In the top right corner of the Global Settings tab, click Restore.

  • This resets all driver-level configurations to factory defaults, potentially clearing conflicts.

For AMD GPUs: Using AMD Software Adrenalin Edition

  • Open the AMD Software: Adrenalin Edition.

  • Click the Gear icon (Settings) in the top right.

  • Under the System tab, locate the Factory Reset option.

  • Select Perform Reset to restore the driver settings to their original state.

For Intel GPUs: Using the Intel Graphics Command Center

  • Open the Intel Graphics Command Center from the Start Menu.

  • Navigate to System settings.

  • Click on the Restore to Original Defaults button.

  • Confirm the action to reset video profiles and display configurations.

Troubleshooting: What to do if restarting doesn't fix the issue?

If restarting your GPU driver doesn’t resolve flickering or freezing, the problem may be more serious than a temporary glitch. Follow these steps to troubleshoot effectively:

Step 1: Update your graphics driver

Outdated drivers are a common cause of display issues.

  • Visit the official website of NVIDIA, AMD, or Intel to download the latest driver.

  • Avoid third-party driver updaters; stick to official sources or Windows Update.

Step 2: Roll back to a previous, stable driver

Sometimes a recent update can introduce bugs. If issues started after updating:

  1. Open Device Manager.

  2. Right-click your GPU and select Properties.

  3. Go to the Driver tab and click Roll Back Driver.

Step 3: Perform a clean reinstallation of the driver

Updating over an old driver may leave behind corrupted files. For a fresh start:

  1. Download Display Driver Uninstaller (DDU).

  2. Boot Windows into Safe Mode.

  3. Run DDU and select Clean and Restart.

  4. Install the latest driver once Windows reboots normally.

Step 4: Check for overheating or hardware problems

If software fixes fail, hardware may be the issue:

  • Monitor GPU temperatures; above 85°C (185°F) may indicate thermal throttling.

  • Ensure fans are spinning and the case is dust-free.

  • Persistent graphical artifacts may point to failing VRAM, requiring a GPU replacement.

Conclusion

Restarting the graphics driver is a powerful "first aid" technique for Windows PC users. Whether you utilize the Win + Ctrl + Shift + B shortcut for an instant fix or navigate the Device Manager for a targeted reset, these methods can save you from unnecessary system reboots and lost productivity. While it is not a cure for dying hardware or severely corrupted files, it is the most efficient way to address the transient display glitches inherent in modern computing.

Frequently asked questions

Is it safe to restart my graphics driver?

toggle

Yes, it is completely safe. It is a built-in diagnostic function of Windows. It does not delete data or harm your hardware.

Will restarting the graphics driver close my applications or delete my work?

toggle

Generally, no. Your open windows and documents will remain. However, active 3D applications (like video games or CAD software) may crash because the rendering engine they rely on is momentarily cut off. It is always best to save your work before attempting a reset if possible.

What is the fastest way to restart a graphics driver?

toggle

The fastest method is pressing Windows Key + Ctrl + Shift + B. This takes only a few seconds.

Why did my screen go black for a second?

toggle

The black screen is normal. It indicates that the connection to the GPU was severed and then successfully re-established. It is the visual confirmation that the restart occurred.

How is restarting a driver different from rebooting my computer?

toggle

Restarting the computer resets the entire operating system, including the kernel, memory, and all services. Restarting the driver only resets the display subsystem, leaving the rest of the OS running.

Can I restart the graphics driver on a Mac or Linux system?

toggle

The specific shortcut Win + Ctrl + Shift + B is exclusive to Windows. Mac and Linux systems have different architectures and commands for handling display drivers and do not utilize this specific hotkey.

0

Ready to transform your IT Management

1

Take the leap with SuperOps and take your
IT management up to a whole new level.