/
/

How to Turn On or Off Notifications of USB Issues in Windows 10

How to Turn On or Off Notifications of USB Issues in Windows 10 blog banner image

USB issue notifications are system alerts displayed by Windows 10 when it detects a problem with a connected USB device. These typically appear as toast notifications in the lower-right corner of the screen, indicating limited functionality, unrecognized devices, or compatibility warnings.

While these alerts are helpful, they may be unnecessary in controlled environments, such as kiosks, embedded systems, or thin clients, where user interaction is minimal. They can also be distracting when specific USB peripherals consistently trigger harmless notifications. This guide offers a walkthrough on how to enable or disable USB issue notifications in Windows 10.

USB device not recognized notification

Enable or disable USB error notifications via Registry Editor

Before you begin, make sure:

  • You are using Windows 10 (any edition),
  • You have administrative privileges, and
  • You have access to the Registry Editor.

Step 1: Open the Registry Editor

⚠️ Warning: Editing the Windows Registry can affect system stability if done incorrectly. Always double-check the key and value names before making changes. It’s strongly recommended to back up the registry or create a system restore point before proceeding.

  1. Press Win + R to open the Run dialog box.
  2. Type regedit and click Enter to open the Registry Editor.

Input regedit to open Registry Editor

  1. If prompted by User Account Control (UAC), click Yes.

Step 2: Navigate to the target key

  1. Navigate to:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Notifications

Registry Editor path

If the Notifications key doesn’t exist, you’ll need to create it.

Here’s how:

    1. Right-click on the Control key.
    2. Select New > Key.

Adding new key

    1. Name it: Notifications.

Navigating to target key

Step 3: Create or modify the DisableDeviceProblemNotifications DWORD

  1. Click the Notifications key.
  2. Right-click on an empty area in the right pane.
  3. Select New > DWORD (32-bit) Value.

Adding new DWORD value

  1. Name it: DisableDeviceProblemNotifications

Notifications key new DWORD value

  1. Double-click the new DWORD value and set the Value data to:
    • 1 = Disable USB error notifications
    • 0 = Enable USB notifications (default)

DWORD Value name and data

Step 4: Restart the system

  1. Close the Registry Editor.
  2. Click the Start > Power > Restart to apply changes.

Deploy via Command Line or Script (optional)

You can also automate the change through the following methods:

Option 1: Using PowerShell

  1. Press Win + S to open the search bar.
  2. Type PowerShell.
  3. Right-click on Windows PowerShell from the search results.
  4. Select Run as administrator.
  5. If prompted by UAC, click Yes.
  6. Run this command.

$regPath = "HKLM:\SYSTEM\CurrentControlSet\Control\Notifications"

if (-not (Test-Path $regPath)) {

New-Item -Path $regPath

}

Set-ItemProperty -Path $regPath -Name "DisableDeviceProblemNotifications" -Value 1

  1. Press Enter.

Option 2: Using Command Prompt

  1. Press Win + S to open the search bar.
  2. Type cmd.
  3. Right-click on Command Prompt from the search results.
  4. Select Run as administrator.
  5. If prompted by UAC, click Yes.
  6. Run this command:

reg query "HKLM\SYSTEM\CurrentControlSet\Control\Notifications" >nul 2>&1 || reg add "HKLM\SYSTEM\CurrentControlSet\Control\Notifications"

reg add "HKLM\SYSTEM\CurrentControlSet\Control\Notifications" /v DisableDeviceProblemNotifications /t REG_DWORD /d 1 /f

  1. Press Enter.

Undoing the changes

If you want to re-enable USB error notifications, follow the same steps but change the DWORD value to 0.

Undo command using PowerShell

Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\Notifications" -Name "DisableDeviceProblemNotifications" -Value 0

Undo command using Command Prompt

reg add "HKLM\SYSTEM\CurrentControlSet\Control\Notifications" /v DisableDeviceProblemNotifications /t REG_DWORD /d 0 /f

Troubleshooting common issues

Issue: Notifications still appear

If USB error notifications continue to show, it’s possible the registry change didn’t take effect. Here’s what to check:

  • Ensure the DisableDeviceProblemNotifications DWORD value is set to 1.
  • Confirm that the DWORD is set under the correct key:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Notifications

  • Restart the computer after making changes.

Issue: Registry key doesn’t exist

If the registry key doesn’t exist, you’ll need to create it manually. Refer to the above steps for full instructions on creating the Notifications key.

Issue: Devices not working after setting the change

Remember that this registry setting only affects notification behavior, and it doesn’t alter USB device functionality. If a device stops working afterward, the issue is likely unrelated. Try checking the drivers or hardware for actual issues:

  1. Press Win + X > Device Manager.
  2. Right-click on the device > Update driver.

Frequently Asked Questions (FAQ)

Does this block all USB functionality?

No. Modifying DisableDeviceProblemNotifications only disables system notifications related to USB issues. It does not block USB ports, connections, or device functionality. Devices will continue to function as they normally would.

Will it hide all types of device errors?

No. This setting only suppresses error notifications related to USB and similar peripheral devices flagged by the system. Other hardware errors, such as network issues or storage drive failures, will still appear as usual.

Can this setting be enforced via GPO?

There is no direct Group Policy setting for disabling USB error notifications. However, you can enforce the registry change using Group Policy Preferences or a Powershell startup script deployed through Group Policy.

Via Group Policy Preferences (GPP)

  1. Press Win + R to open the Run dialog box.
  2. Type gpmc.msc and click Enter to open the Group Policy Management Console.
  3. Navigate to: Forest > Domains > [Your Domain] > Group Policy Objects
  4. Right-click Group Policy Objects, then select New.
  5. Name the GPO (e.g., Disable USB Notifications) and click OK.
  6. Right-click the newly created GPO and select Edit.
  7. Navigate to: Computer Configuration > Preferences > Windows Settings > Registry
  8. Right-click Registry, then select New > Registry Item.
  9. Fill the settings as follows:
    • Action: Update
    • Hive: HKEY_LOCAL_MACHINE
    • Key Path: SYSTEM\CurrentControlSet\Control\Notifications
    • Value Name: DisableDeviceProblemNotifications
    • Value Type: REG_DWORD
    • Value Data: 1 (to disable notifications)
    • Base: Decimal
  10. Click Apply > OK.

Via PowerShell

  1. Open Notepad and paste the following script:

$regPath = "HKLM:\SYSTEM\CurrentControlSet\Control\Notifications"

# Create the key only if it doesn't already exist

if (-not (Test-Path $regPath)) {

New-Item -Path $regPath

}

# Set the registry value

Set-ItemProperty -Path $regPath -Name "DisableDeviceProblemNotifications" -Value 1

  1. Save the file as DisableUSBNotifications.ps1
  2. Press Win + R to open the Run dialog box.
  3. Type gpmc.msc and click Enter to open the Group Policy Management Console.
  4. Navigate to: Computer Configuration > Policies > Windows Settings > Scripts (Startup/Shutdown)
  5. Double-click Startup, then click Add.
  6. Browse to your .ps1 script, then click OK.
  7. Press Win + S to open the search bar.
  8. Type cmd.
  9. Right-click on Command Prompt from the search results.
  10. Select Run as administrator.
  11. If prompted by UAC, click Yes.
  12. Execute: gpupdate /force
  13. Press Enter, then restart the target machine to apply changes.

Managing USB issue notifications in Windows 10

Turning off USB issue notifications can help streamline user experience by reducing non-critical alerts, especially in controlled environments. You can suppress these notifications through the Registry Editor, PowerShell, or Group Policy Preferences. Importantly, this setting doesn’t affect the actual functionality or availability of USB devices. It’s an ideal configuration for labs, kiosks, thin clients, and production systems where alerts are unnecessary or distracting.

You might also like

Ready to simplify the hardest parts of IT?
×

See NinjaOne in action!

By submitting this form, I accept NinjaOne's privacy policy.

NinjaOne Terms & Conditions

By clicking the “I Accept” button below, you indicate your acceptance of the following legal terms as well as our Terms of Use:

  • Ownership Rights: NinjaOne owns and will continue to own all right, title, and interest in and to the script (including the copyright). NinjaOne is giving you a limited license to use the script in accordance with these legal terms.
  • Use Limitation: You may only use the script for your legitimate personal or internal business purposes, and you may not share the script with another party.
  • Republication Prohibition: Under no circumstances are you permitted to re-publish the script in any script library belonging to or under the control of any other software provider.
  • Warranty Disclaimer: The script is provided “as is” and “as available”, without warranty of any kind. NinjaOne makes no promise or guarantee that the script will be free from defects or that it will meet your specific needs or expectations.
  • Assumption of Risk: Your use of the script is at your own risk. You acknowledge that there are certain inherent risks in using the script, and you understand and assume each of those risks.
  • Waiver and Release: You will not hold NinjaOne responsible for any adverse or unintended consequences resulting from your use of the script, and you waive any legal or equitable rights or remedies you may have against NinjaOne relating to your use of the script.
  • EULA: If you are a NinjaOne customer, your use of the script is subject to the End User License Agreement applicable to you (EULA).