Hi,
Is it possible to disable bluetooth module in device manager without loading additional module on Powershell?
I' ve found something like that
$bluetooth = Get-wmiobject Win32_PnPEntity | where {$_.Caption -like "*bluetooth*" }
$bluetooth.Disable()
Start-Sleep -s 5
$bluetooth.Enable()
read-host
but there is no disable method :/
Thanks,
Hunal