时间:2017-03-22 09:53:32 作者: 点击:次
蓝牙允许您将设备无线连接到彼此,以及发送和接收文件。 我们已经看到如何打开和使用Windows 10中的蓝牙。在本文中,我们将看到在Windows 10/8/7中关闭或禁用蓝牙的各种方法。
# Must be run under System $namespaceName = “root\cimv2\mdm\dmmap” $className = “MDM_Policy_Config01_Connectivity02” # Add the setting to turn off the Bluetooth toggle in the settings menu New-CimInstance -Namespace $namespaceName -ClassName $className -Property @{ParentID=”./Vendor/MSFT/Policy/Config”;InstanceID=”Connectivity”;AllowBluetooth=0} # Remove the setting to allow the User to control when the radio is turned on $blueTooth = Get-CimInstance -Namespace $namespaceName -ClassName $className -Filter ‘ParentID=”./Vendor/MSFT/Policy/Config” and InstanceID=”Connectivity”‘ Remove-CimInstance $blueTooth