{{tag>sysadmin netadmin windows réseau}}
====== Windows : Gérer les interfaces réseau ======
Quelques notes sur le contrôle (démarrage/arrêt) des interfaces réseau sur une machine Windows.
===== Depuis la GUI =====
Via la fenêtre "Connexions réseau" :
* ⊞ Win+r pour ouvrir la fenêtre Exécuter;
* Saisir **''control netconnections''** puis Enter;
Via le gestionnaire de périphériques:
* ⊞ Win+r pour ouvrir la fenêtre Exécuter;
* Saisir **''devmgmt.msc''** puis Enter;
* Déployer la branche "Cartes réseau";
* Clic-droit sur l'interface cible et sélectionner l'option **''Désactiver''** du menu contextuel.
===== Depuis la CLI =====
==== Ligne de commande ====
Exécuter **cmd** tant qu'administrateur
netsh interface set interface 'INTERFACE NAME' disable
==== Powershell ====
Lancer **powershell** en tant qu'administrateur.
Lister les interfaces disponibles
Get-NetAdapter
Désactiver l'interface "Adapter Name"
Disable-NetAdapter -Name "Adapter Name" -Confirm:$false
Disable-NetAdapter -InterfaceAlias "Adapter Alias" -Confirm:$false
Activer l'interface "Adapter Name"
Enable-NetAdapter -Name "Adapter Name" -Confirm:$false
Enable-NetAdapter -InterfaceAlias "Adapter Alias" -Confirm:$false
===== Références =====
* https://superuser.com/questions/1689648/how-to-disable-enable-network-adapter-from-command-line-on-the-windows-10