Aktivieren / DeAktivieren von Netzwerkadapter resp. WiFi-Verbindung
http://superuser.com/questions/696270/how-to-turn-on-wifi-via-cmd
Mit netsh:
Get the Interface Name:
netsh interface show interface
Enable the interface:
netsh interface set interface „Interface Name“ enabled
Activate with „RunAS“
C:\Windows\System32\runas.exe /savecred /user:administrator „C:\Windows\System32\netsh.exe interface set interface \“Wi-Fi\“ enabled“
Mit wmic
Get NIC list and index number:
wmic nic get name, index
Enable NIC with index number: (eg: 7)
wmic path win32_networkadapter where index=7 call enable
Disable NIC with index number: (eg: 7)
wmic path win32_networkadapter where index=7 call disable