web-dev-qa-db-ja.com

コマンドラインからネットワーク接続を有効/無効にする

これについては、Googleに多数の結果が存在することを知っています: results が、Windows XPマシンでは作成しませんでした。コマンドラインからLAN接続を無効にします。

>netsh interface set interface "Local Area Connection" DISABLED
One or more essential parameters not specified
The syntax supplied for this command is not valid. Check help for the correct sy
ntax.

>netsh interface set interface name="Local Area Connection" admin="disabled"
One or more essential parameters not specified
The syntax supplied for this command is not valid. Check help for the correct sy
ntax.

>netsh interface set interface name="Local Area Connection" admin=DISABLED
One or more essential parameters not specified
The syntax supplied for this command is not valid. Check help for the correct sy
ntax.
22
trante

最初の2つのコマンドには、昇格/管理者権限が必要です:

LANネットワーク接続を無効にする

C:\> netsh interface set interface name="Local Area Connection" admin=disabled

LANネットワーク接続を有効にする

C:\> netsh interface set interface name="Local Area Connection" admin=enabled

仮定:あなたのインターフェースは「ローカルエリア接続」として名付けられました。つかいます netsh interface show interfaceで名前を見つけます。

Wifiプロファイルのリスト

C:\> netsh wlan show profiles

Wifiプロファイルに接続

C:\> netsh wlan connect name="ProfileName"
20
Yarish Kumar

昇格/管理者特権で実行する必要があります。

(Windows 7では、そうでなければ混乱するエラーメッセージが表示されます

An interface with this name is not registered with the router.

(@yarish kumarの答えを編集してこれを反映しました。)

5
Aaron Thoma

C:\ WINDOWS\system32> netsh interface show interface

管理状態状態タイプインターフェイス名

有効接続済み専用イーサネット2有効接続解除専用イーサネット有効接続済み専用Wi-Fi

C:\ WINDOWS\system32> netsh interface set interface name = "Ethernet" admin = enableまたはdisable

w10はこれを出力します。

2
cis

テーブルからプロファイルを削除する必要があるようです。 I.E.

netsh LAN> delete "LAN接続のプロファイル"

この前に、LANの構成情報を保存する必要があります。それを追加し直したい場合は、XMLファイルとして保存してから、追加し直してください

netsh LAN> ADD file-name = "profile1.XML" interface = "ローカルエリア接続"

netshコマンドの詳細については、 http://www.computerhope.com/netsh.htm もご覧ください。

お役に立てれば

1
CMS_95