Reset scheda di rete

()

Come si resetta una scheda di rete – Metodo DOS / Prompt dei comandi

1. Disattivare e riattivare la scheda di rete via netsh

cmd
netsh interface set interface "NOME_SCHEDA" admin=disable
timeout /t 5
netsh interface set interface "NOME_SCHEDA" admin=enable

Sostituisci NOME_SCHEDA con il nome reale, es: Ethernet o Wi-Fi


2. Rilasciare e rinnovare l’indirizzo IP

cmd
ipconfig /release
ipconfig /renew

3. Svuotare la cache DNS

cmd
ipconfig /flushdns

4. Reset completo dello stack TCP/IP

cmd
netsh int ip reset
netsh winsock reset

Richiede riavvio per applicare completamente le modifiche.


Reset della scheda anche via PowerShell

powershell
# Disabilita e riabilita la scheda di rete specifica
Disable-NetAdapter -Name "Ethernet" -Confirm:$false
Start-Sleep -Seconds 5
Enable-NetAdapter -Name "Ethernet" -Confirm:$false

Reset manuale tramite Gestione Dispositivi (GUI)

  1. Apri devmgmt.msc
  2. Espandi Schede di rete
  3. Tasto destro sulla scheda → Disabilita dispositivo
  4. Poi → Abilita dispositivo

Controllare il nome esatto della scheda

cmd
netsh interface show interface

oppure

powershell
Get-NetAdapter

Best Practices per SysAdmin

  • Evita reboot se basta netsh int ip reset.
  • Monitora via script l’adattatore più volte al giorno nei client critici.
  • Verifica la configurazione IP/DHCP dopo ogni reset.
  • In ambienti aziendali, escludi la rete da endpoint OneDrive/Backup temporanei.

/ 5
Grazie per aver votato!

How useful was this post?

Click on a star to rate it!

Average rating / 5. Vote count:

No votes so far! Be the first to rate this post.

As you found this post useful...

Follow us on social media!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?