Disabling USB Power Saving for Your Wheel, Pedals, and Peripherals
If your report flagged USB power saving, Windows may be allowed to power down USB hubs when they look idle — which can cause intermittent input lag on wheels, pedals, shifters, and other USB peripherals, since Windows briefly "wakes up" the connection rather than keeping it always-on.
This matters more for sim racing than almost any other genre, since your wheel/pedals are a continuous, latency-sensitive input device, not an occasional-use accessory like a printer.
Turn it off for each USB hub
- Press
Win + R, typedevmgmt.msc, press Enter to open Device Manager. - Expand Universal Serial Bus controllers.
- For each entry named USB Root Hub or Generic USB Hub:
- Right-click > Properties > Power Management tab.
- Uncheck "Allow the computer to turn off this device to save power".
- Click OK.
- Repeat for every hub listed — a typical PC has several.
A quicker way, if you have many hubs
Open an Administrator PowerShell window and run:
powershell
Get-CimInstance -Namespace root\wmi -ClassName MSPower_DeviceEnable | ForEach-Object {
Set-CimInstance -InputObject $_ -Property @{ Enable = $false }
}
This disables power management on every USB-power-manageable device in one step, rather than clicking through each hub individually.
After changing it
Takes effect immediately. Re-run a LagInspector diagnostic to confirm the change, and pay attention to whether your wheel/pedals feel more consistent during your next session.