0

I have bought a USB Bluetooth to keep my phone and tablet unlocked when at home. It works absolutely fine, but I have to manually go into the action center every time after a reboot and turn the Bluetooth off and back on again in order for my devices to reconnect and unlock.

Is there anyway to automate this process?

(This suggested solution How to toggle Win10 bluetooth off and on at startup seemed promising but the answer is a .ps1 script to turn Bluetooth on/off from the command prompt, but it doesn't say how to actually automate the process)

Thank you!

1 Answers1

0

Just download the RadioControlCmd app from the windows store and create yourself a .bat file like so:

@ECHO OFF
radiocontrol.exe 0 OFF
radiocontrol.exe 0 ON

Then use the task scheduler to create a task and run the .bat file at startup. It's REALLY straightforward!