Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Facebook Twitter Instagram
Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Tech News Today
Home»Windows»Fix: TIMER_OR_DPC_INVALID BSOD Error on Windows

Fix: TIMER_OR_DPC_INVALID BSOD Error on Windows

Anup ThapaBy Anup ThapaSeptember 7, 2022
timer_or_dpc_invalid

When Windows encounters a situation where system security and integrity are compromised, the system crashes, generating a STOP error, also known as a bug check. It’s the same scenario with the TIMER_OR_DPC_INVALID bug check, which has a value of 0x000000C7. 

This BSOD occurs if a kernel timer or DPC object is found in a memory location where they’re not permitted. In most cases, a faulty third-party driver tries to free a memory location occupied by the timer or DPC without canceling them. Additionally, if the driver tries to request an invalid processor number, that can also lead to this BSOD.

Ultimately, what all of this means for a user is that you must single out the problematic driver and troubleshoot it accordingly to resolve this error. We’ve detailed how you can do this in the sections below.

How to Fix TIMER_OR_DPC_INVALID

BSODs generally have similar causes and fixes, like faulty hardware and drivers. However, depending on the exact STOP code, certain fixes will be more effective. For instance, in the case of TIMER_OR_DPC_INVALID, it’s almost exclusively caused by bad drivers. As such, the best way to resolve this BSOD will be to root out said driver and try to fix it.

Find the Problematic Driver

The details of the bugcheck can be viewed both via the Event Viewer logs and from the dump file located at %SystemRoot%\Minidump or %SystemRoot%\MEMORY.DMP.

Event Viewer Logs

Here’s how you can check the logs in Windows Event Viewer:

  1. Press Win + R, type eventvwr.msc, and press Enter.
  2. Expand the Windows Logs > System tabs.
    event-viewer-system-logs
  3. Click on Filter Current Log from the right pane.
  4. In the Event Sources section, select Bug Check and press OK. Alternatively, you can also enter 1001 in the All Event IDs field.
    event-viewer-bugcheck
  5. Note the date and time of the bugcheck event and click on Clear Filter from the right pane.
  6. Now, sort by Date and Time and locate the events from Step 5.
  7. First, select the Event and check if the General and Details tabs provide any useful information, such as Driver Names.
    event-viewer-bugcheck-details
  8. If not, check the events before and after the bugcheck to get hints on what could’ve been the issue.

Analyze Dump File

The Event Viewer logs generally won’t provide enough info to determine the faulty driver. You should also download the WinDbg Preview App from the Microsoft store and use it to analyze the dump files. Here are the necessary steps for this:

  1. Open the WinDbg Preview App and press CTRL + D.
  2. Navigate to %SystemRoot%\ or %SystemRoot%\Minidump and open the dump file.
    open dump file
  3. Select View > Command and enter !analyze -v.
    windbg analyze
  4. Check the MODULE_NAME and Probably caused by sections afterward to determine the culprit.
  5. If you have additional dump files, analyze the rest similarly to get more information.

Run Driver Verifier

Driver Verifier simulates various conditions, such as low memory, for instance, to stress the drivers and detect any unintended behavior. Do keep in mind that Driver Verifier is meant to be used by developers on test systems. On production systems, normal users should only use this as a last resort if nothing else has resolved the issue.

We recommend creating a system restore point before running Driver Verifier and only testing non-Microsoft drivers. With all that said, here are the necessary steps for this:

  1. Press Win + R, type verifier, and press Enter.
  2. Select Create Standard Settings to go with the default selection of tests. Alternatively, you can select Create Custom Settings as well. But if you choose the second option, we recommend not including the Randomized Low Resource Simulations and DDI Compliance tests.
    create standard settings in driver verifier manager
  3. On the next screen, pick Select driver names from a list.
  4. Select the drivers you wish to test. Testing only one or a few drivers at a time is a good idea. We recommend starting with any recently installed or updated ones, ones with problematic history, or any others that you suspect.
    driver-verifier-drivers-to-verify
  5. Press Finish and restart your system.
  6. Use your PC as usual afterward. Soon, Driver Verifier will detect a violation and generate a bugcheck. Check the dump file created by this bugcheck with steps from the section above to get further details about the faulty driver.

Troubleshoot Faulty Driver

Once you’ve singled out the faulty driver, you can update, roll back, or uninstall it as necessary. As the problematic driver will differ from system to system, we’ll take the network driver, which is a common culprit, as an example for the steps listed below. You should adjust as appropriate.

Update Driver

First, you should try updating the driver via the Device Manager. Here’s how you can do so:

  1. Press Win + R, type devmgmt.msc, and press Enter.
  2. Expand the Network Adapter section.
    update-network-driver'
  3. Right-click the Network Adapter and select Update Driver.
  4. You have two options here:
    • You can select Search Automatically for Drivers > Search for updated drivers on Windows Update to download recent drivers via Windows Update. Generally, these drivers won’t be the latest ones, though.
      choose search automatically for drivers
    • If you’ve manually downloaded driver files from the manufacturer’s site, you can select Browse my computer for drivers and browse for the files manually.
      browse-driver-location

The second way to update drivers is through the manufacturer’s software. For instance, in the case of graphics drivers, NVIDIA has GeForce Experience, and AMD has AMD Adrenalin.

Roll Back Drivers

If the BSOD started after you updated a certain driver to the latest version, rolling back to the previous build would be a better option. Here’s how you can do so:

  1. Press Win + X and select Device Manager.
  2. Expand the Network Adapters section and double-click the Network Adapter.
  3. In the Driver tab, click on Roll Back driver.
    roll-back-network-driver
  4. Pick any reason for rolling back and proceed with the rollback.

Uninstall Driver

If the current driver files are corrupt and you can’t roll back, uninstalling is a viable option. This will remove the driver files from your system and revert the driver to an old and generic one provided by Microsoft. Here are the steps for this:

  1. Open the Device Manager once again and expand the Network Adapter section.
  2. Right-click the Network Adapter and select Uninstall Device.
    uninstall-network-adapter
  3. Enable the Attempt to remove the driver for this device option and proceed with the on-screen instructions.
fix
Anup Thapa
  • LinkedIn

Anup Thapa is a tech writer at TechNewsToday. He mostly writes informative articles, tutorials, and troubleshooting guides related to Windows systems, networking, and computer hardware. Anup has been writing professionally for almost 5 years, and tinkering with PCs for much longer. His love for all things tech started when he got his first PC over 15 years ago. It was a Pentium IV system running Windows XP on a single 256 MB stick. He spent his formative years glued to this PC, troubleshooting any hardware or software problems he encountered by himself. Professionally, Anup has had brief forays into a variety of fields like coding, hardware installation, writing, etc. In doing so, he's worked with people of different backgrounds and skill levels, from average joes to industry leaders and experts. This has given him not just a versatile skillset, but also a unique perspective for writing that enables him to concisely communicate complex information and solve his reader's problems efficiently. You can contact him at anup@technewstoday.com

Related Posts

Shared GPU Memory

What is Shared GPU Memory? How is It Different From Dedicated VRAM?

March 12, 2023
firmware vs software

Firmware Vs Software – What’s the Difference?

March 8, 2023
update sound drivers

How to Update Sound Drivers on Windows

March 7, 2023
nvidia-users-account-is-locked

Fixed: NVIDIA Users Account is Locked

March 7, 2023
windows-failed-to-start

Fixed: Windows Failed to Start A Recent Hardware or Software Change Might Be The Cause

March 7, 2023
computer-wont-shut-down

Computer Won’t Shut Down? Here’re 8 Ways to Fix It

March 5, 2023
Add A Comment

Leave A Reply Cancel Reply

Latest Posts
Shared GPU Memory

What is Shared GPU Memory? How is It Different From Dedicated VRAM?

March 12, 2023
c drive vs d drive

C Drive Vs D Drive – What’s the Difference?

March 12, 2023
firmware vs software

Firmware Vs Software – What’s the Difference?

March 8, 2023
You may also like
hp-printer-yellow-light

How to Fix HP Printer Yellow Light

March 12, 2023
asus-monitor-hdmi-no-signal

ASUS Monitor HDMI No Signal? Here’re 8 Ways to Fix It

March 12, 2023
How to Screenshot on a Lenovo Laptop 3

4 Ways to Take a Screenshot on Lenovo Laptop

March 10, 2023
Recommended
Cookie Clicker Garden Guide

Cookie Clicker Garden Guide to Unlocking Every Seed

September 26, 2021
monitor no signal

Computer Turns On But Monitor Says No Signal (9 Ways To Fix)

November 10, 2022
Facebook Twitter Pinterest
  • Home
  • About Us
  • Our Team
  • Editorial Guidelines
  • Privacy Policy
  • Affiliate Disclosure
© 2023 TechNewsToday, editor@technewstoday.com | Tech Central Pvt. Ltd.

Type above and press Enter to search. Press Esc to cancel.