https://stackoverflow.com/questions/64888963/how-to-list-bluetooth-devices-near-me-using-powershell
Get-PnpDevice | Where-Object {$_.Class -eq "Bluetooth"}
foreach ($device in $devices) { echo $device.InstanceId }
Modified on: Thu, 31 Oct, 2024 at 10:49 AM
https://stackoverflow.com/questions/64888963/how-to-list-bluetooth-devices-near-me-using-powershell
Get-PnpDevice | Where-Object {$_.Class -eq "Bluetooth"}
foreach ($device in $devices) { echo $device.InstanceId }
Did you find it helpful? Yes No
Send feedback