@echo off color 2 title 啟停無線網路卡 echo 啟動無線網路卡=======》按1鍵 echo 關閉無線網路卡=======》按2鍵 set /p n= if /i "%n%" equ "1" goto start if /i "%n%" equ "2" goto stop :start echo 您選擇了無線網路卡模式 echo 正在設定,請稍後...... netsh interface set interface "無線網路連線" enabled goto end :stop echo 您選擇了網路卡模式 echo 正在設定,請稍後...... netsh interface set interface "無線網路連線" disabled goto end