@ECHO OFF SET net="ローカル エリア接続" cls echo. echo [ 1 ] ネット停止 echo [ 4 ] ネット接続 echo [ 7 ] ネット再起動 echo [ 3 ] ネットワーク接続を開く echo [ 0 ] 終了 echo. choice /c:14730 cls IF ERRORLEVEL 5 GOTO z IF ERRORLEVEL 4 GOTO d IF ERRORLEVEL 3 GOTO c IF ERRORLEVEL 2 GOTO b IF ERRORLEVEL 1 GOTO a goto z :a echo. echo ネット停止 echo. netsh interface set interface %net% disable goto z :b echo. echo ネット接続 echo. netsh interface set interface %net% enabled goto z :c echo. echo ネット再起動 echo. netsh interface set interface %net% disable netsh interface set interface %net% enabled goto z :d echo. echo ネットワーク接続を開く echo. start "" "shell:ConnectionsFolder" goto z :z end