/
/

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

by Richelle Arevalo, IT Technical Writer
How to Turn On or Off Notifications of USB Issues in Windows 10 blog banner image

Instant Summary

This NinjaOne blog post offers a comprehensive basic CMD commands list and deep dive into Windows commands with over 70 essential cmd commands for both beginners and advanced users. It explains practical command prompt commands for file management, directory navigation, network troubleshooting, disk operations, and automation with real examples to improve productivity. Whether you’re learning foundational cmd commands or mastering advanced Windows CLI tools, this guide helps you use the Command Prompt more effectively.

Key Points:

  • Turn On or Off Notifications of USB issues via Settings: Open Settings, go to Bluetooth & devices > USB, and toggle Connection notifications on or off.
  • Enable or disable USB error notifications via Registry Editor: Use Registry Editor (regedit) to navigate to the appropriate USB notification registry path, modify the DWORD value to enable or disable USB error notifications, and restart the system to apply the changes.
  • Deploy via Command Line or Script: Enter the commands below in either PowerShell or Command Prompt to update the USB notification registry value and turn on or off notifications of USB issues in Windows 11 at scale.

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

How to Turn On or Off USB Error Notifications in Windows 11 (Using Settings)

Windows 11 includes a built-in USB settings page that allows you to enable or disable USB issues. Should you turn on notification of USB issues in Windows 11, you’ll receive alerts should there be a problem with a connected USB device. This feature can also report whether the USB issues stem from power limitations, device malfunction, or recognition failure.

Follow these steps to enable Notifications of USB Issues in Windows 11:

  1. Open Settings (press Windows + I).
  2. Select Bluetooth & devices from the left pane, then click USB.
  3. Toggle “Connection notifications” on to enable notifications.

To turn off notifications of USB issues in Windows 11, follow the steps above, but toggle “Connection notifications” to off.

💡 Note: The USB settings page may not appear on all Windows 11 systems, depending on your device’s hardware support and your Windows 11 version. If this option is unavailable, you can use the Registry method.

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_CURRENT_USER\Software\Microsoft\Shell\USB

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 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.

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.

Quick-Start Guide

There’s a “USB Drive Alert” script that can help you manage USB issue notifications in Windows 10.

Here are the key details:

– The script is called “USB Drive Alert”
– It can alert when a USB drive is detected
– Optionally saves the results to a custom field

To use this feature:

1. Go to NinjaOne’s Automation Library
2. Search for and select the “USB Drive Alert” script
3. Configure it to send notifications or save detection information as needed

If you want more specific control over USB issue notifications, you might want to:

– Consult with your NinjaOne administrator
– Create a custom script tailored to your specific USB monitoring requirements
– Use the existing USB Drive Alert script as a starting point

FAQs

No. Modifying 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. USB devices will continue to function as they normally would.

No. When you turn off notifications for USB issues in Windows 11, it does not disable USB ports, nor does it affect connected devices. Doing so only suppresses the alerts that appear when Windows detects a connection issue.

Incompatible USB devices, insufficient power delivery, outdated drivers, or faulty USB cables are some of the most common triggers for USB error notifications in Windows 11. The Windows system can detect these issues and display messages such as “USB device not recognized” whenever it gives you notifications.

If you receive a notification of USB issues that state “USB device not recognized”, your USB device might be malfunctioning due to an incompatible driver or insufficient power from the USB port. This notification also usually appears when Windows detects outdated USB device firmware or a damaged cable or port.

Troubleshooting steps typically include updating drivers, switching USB ports, restarting the system, or testing the device on another computer.

You might also like

Ready to simplify the hardest parts of IT?