#Network script bat @echo off echo. echo NETWORK ENABLE DISABLE set /p end= Choose one (enable/disable): echo. echo ****************************************************** netsh interface show interface echo ****************************************************** echo. set /p int= Enter interface name from above: netsh interface set interface "%int%" %end% echo DONE... pause