Windows 10 No sound to headset

Fenway16

Honorable Member
Joined
Jan 6, 2017
Messages
461
Sound is fine thru speakers but nothing into my headset. No other issues - everything working fine. Thanks.
 


Solution
Try running the following from Powershell
Code:
Get-PnpDevice | ? { ($_.Class -like "MEDIA" -or $_.Class -like "AudioEndpoint") -and $_.Present -eq $true } | sort class | select Status,Class,FriendlyName,*Error*

Looking for any items with a Status not 'OK', any devices with an error or ConfigManagerErrorCode not like CM_PROB_NONE
Try running the following from Powershell
Code:
Get-PnpDevice | ? { ($_.Class -like "MEDIA" -or $_.Class -like "AudioEndpoint") -and $_.Present -eq $true } | sort class | select Status,Class,FriendlyName,*Error*

Looking for any items with a Status not 'OK', any devices with an error or ConfigManagerErrorCode not like CM_PROB_NONE
 


Solution
Thanks for info. I did some more checking and mysteriously, a game I play had turned off the sound so it naturally wasn't coming thru headset. I guess, naturally. At any rate, it is working again.
 


Back
Top