using command line Youve experienced some network connectivi
using command line
You\'ve experienced some network connectivity issues, and you suspect it may be one of the NICs in your computer. Your task in this lab is to stop the enp2s1 NIC as the first step to try to isolate the problem.Solution
C:\\> netsh interface set interface name=\"enp2s1\" admin=disabled will disable the NIC for you.
Whereas, if you want to re-enable the interface again, you can do so by using the command:
C:\\> netsh interface set interface name=\"enp2s1\" admin=enabled , which will enable the NIC again.
