Are you aware of Powershell?
There are a number of cmdlets that may prove helpful in discovering more about what is happening.
For example you can use Get-PNPDevice to obtain a list of the devices on the laptop.
More specifically you can use:
Get-PNPDevice -Class 'Bluetooth'
and
Get-PNPDevice -Class 'USB'
to list out Bluetooth and USB devices. Premise being that the problem is Bluetooth and/or USB related.
FYI:
https://learn.microsoft.com/en-us/p...evice/get-pnpdevice?view=windowsserver2025-ps
Powershell is likely installed on the laptop. Run as admin and just use "Get" cmdlets to see what you can find and learn.
Maybe some unknown or unexpected device.
There are other cmdlets available.
Get-Process might help discover that stuttering etc. occurs only if some specific process is running. That becomes a bit more complicated but is doable.
Mostly up to you and how much additional time and effort you are willing to put into finding and fixing (if possible) the problem(s).
There are a number of cmdlets that may prove helpful in discovering more about what is happening.
For example you can use Get-PNPDevice to obtain a list of the devices on the laptop.
More specifically you can use:
Get-PNPDevice -Class 'Bluetooth'
and
Get-PNPDevice -Class 'USB'
to list out Bluetooth and USB devices. Premise being that the problem is Bluetooth and/or USB related.
FYI:
https://learn.microsoft.com/en-us/p...evice/get-pnpdevice?view=windowsserver2025-ps
Powershell is likely installed on the laptop. Run as admin and just use "Get" cmdlets to see what you can find and learn.
Maybe some unknown or unexpected device.
There are other cmdlets available.
Get-Process might help discover that stuttering etc. occurs only if some specific process is running. That becomes a bit more complicated but is doable.
Mostly up to you and how much additional time and effort you are willing to put into finding and fixing (if possible) the problem(s).