I do not know how to switch the airplane switch. But you can easily turn off all your radio stations using powershell in Windows 8 using Network Adapters commands.
Use Get-NetAdapter to see all your adapters, bluetooth \ wifi \ ethernet
Get-NetAdapter
You can disable a specific adapter by index \ name \ description:
Disable-NetAdapter -Name "Wi-Fi"
Or you can just disable them all like this:
Disable-NetAdapter *
And put them back on
Enable-NetAdapter *
Note. You will need to run Powershell as an administrator to execute Disable-NetAdapter and Enable-NetAdapter
source share