repair a particular NIC connection?

  • Thread starter Thread starter Jason
  • Start date Start date
J

Jason

Hello

How can a repair a particular NIC connection via the command line, versus
having to do it through the GUI?

Also, whaT exactly happens when you repair a connection?

Is there a link that gives that information?

Thanks
 
Jason said:
How can a repair a particular NIC connection via the command line,
versus having to do it through the GUI?

Also, whaT exactly happens when you repair a connection?

Is there a link that gives that information?

A batch script that does this:

<script starts on next line>
ipconfig /renew
ipconfig /flushdns
arp -d *
nbtstat -RR
<script ends above this line>

- Renew the IP address for the adapter.
- Purges the DNS Resolver cache.
- Delete all hosts in the arp cache.
- Sends Name Release packets to WINS and then, starts Refresh.

Although - I sort of agree with the other posts. Giving that you are asking
about this makes one think there may be some other underlying problems that
this sort of solution would be a work-around for - not a solution.
 
Back
Top