joaer 3 Posted August 12, 2020 Author Share Posted August 12, 2020 Well well, there you go. 🙂 Anyways, thanks for the support, and great that you found a solution! Regards, Joakim Link to comment Share on other sites More sharing options...
itman 1,593 Posted August 12, 2020 Share Posted August 12, 2020 (edited) 4 hours ago, Marcos said: It also revealed a weakness of Windows when a very simple python command can reset bluetooth and wifi connections This has been known for some time: Quote import os def enable(): os.system("netsh interface set interface name 'Wifi' enabled") def disable(): os.system("netsh interface set interface name 'Wifi' disabled") where; "Wifi" is network adapter name https://stackoverflow.com/questions/44246527/turn-wifi-off-using-python-on-windows-10 On the other hand, no Python installation is needed since netsh interface set interface name ....... works just fine from Admin level command prompt or via PowerShell. Edited August 12, 2020 by itman Link to comment Share on other sites More sharing options...
Administrators Marcos 4,837 Posted August 12, 2020 Administrators Share Posted August 12, 2020 We did not run netsh to trigger the issue but it doesn't matter, it was much simpler. Necessary exemptions were created and now the issue doesn't manifest any more. Link to comment Share on other sites More sharing options...
Recommended Posts