Disabling / Enabling Bluetooth Network Adapters


For security reasons you may wish to disable Bluetooth network adapters on select machines


To do this create a batch file that will disable network adapters called Bluetooth Network Connection




Batch File to disable Bluetooth Network Adapters  




@echo off

netsh interface set interface "Bluetooth Network Connection" admin=disable

exit




Create a Third Party Template to run the disable Bluetooth Network Adapters batch file






Batch File to enable Bluetooth Network Adapters  


@echo off

netsh interface set interface "Bluetooth Network Connection" admin=enable

exit


Create a Third Party Template to run the enable Bluetooth Network Adapters batch file