WINDOWS 11

How to fix Next & Previous Buttons Not Working in Windows 11

If your Next and Previous media keys aren't working, it's likely due to outdated drivers, system updates, or misconfigured settings. Here's a comprehensive guide to fix the issue.

Deepak Yadav

09/20/2024 03:56:52
Update Keyboard Drivers
  1. Right-click Start and select Device Manager.

  2. Expand Keyboards and Human Interface Devices.

  3. Right-click each device, select Properties, and go to the Driver tab.

  4. If the Driver Provider isn’t Microsoft, visit the provider’s website and update the drivers.

Some driver tools allow rollback. Roll back to the last date before the issue started.

Run System File Checker and DISM
  1. Open Command Prompt as administrator.

  2. Run sfc /scannow.

  3. After that, run DISM /Online /Cleanup-Image /RestoreHealth.

  4. Type pnputil /scan-devices and press Enter to force Windows to scan for devices.

  5. Restart your PC.

This method fixes corrupted system files that could be causing the issue.

Check Your BIOS Settings
  1. Download and install Microsoft PowerToys.

  2. Restart your computer, and when it’s booting up, press F2, Delete, or Esc (one of these will get you into BIOS).

  3. Once you’re in the BIOS, look for something like Keyboard Emulation or Legacy USB Support. Flip the setting (turn it on if it’s off or vice versa).

  4. Save the changes and exit. Your PC will restart.

Try enabling Keyboard Init in BIOS. This can help your computer recognize your keyboard properly.

Fix IRQ Conflicts
  1. Open up Device Manager, left click on view tab and switch the view to Resources by Connection.

  2. Now, check if there’s any conflict with the USB devices (like shared IRQs).

  3. If there is, you can either change the IRQ settings in the BIOS or just plug your USB devices into different ports.

Check the Event Viewer
  1. Open Event Viewer on your PC.

  2. In the left panel, expand Windows Logs if it's not already expanded.

  3. Click on System under Windows Logs.

  4. In the middle panel, you'll see a list of events. Look for the System log, which is highlighted in blue in this image.

  5. In the right panel, under Actions, you'll see a section labeled System.

  6. Now, investigate potential HID or USB device errors:

    • Open the System log and find entries marked as Error.
    • PFocus on anything mentioning HID or USB devices.
    • Use that info to update any drivers that might be causing issues.

Try a Custom Troubleshooter Script
  1. Open Notepad and paste this code in there:
    @echo off echo Troubleshooting keyboard... powershell -ExecutionPolicy Bypass -Command "& {Get-WmiObject Win32USBControllerDevice | ForEach-Object{Wmi} | Where-Object {$.Description -like 'keyboard'} | ForEach-Object {$.Disable(); Start-Sleep -Seconds 2; $.Enable()}}

  2. pause Save it as KeyboardFix.bat.

  3. Right-click it and run as administrator.

Remap Keys Using PowerToys
  1. Download and install Microsoft PowerToys.

  2. Open PowerToys and go to Keyboard Manager.

  3. Choose Remap a key and assign your media keys to their proper functions.

You can set up a toggle key for switching between media controls and F-keys.

Additional Tips
  1. Try testing in Windows Sandbox. This is a quick way to check if the issue is caused by something in your system or if it happens in a fresh environment too.

  2. Go to Power Options and turn off USB Selective Suspend. This ensures your keyboard stays powered and doesn’t go into sleep mode.

  3. If you’re using a laptop, plug in an external keyboard. If the external keyboard works, it’s probably a hardware issue with your laptop’s built-in keyboard.