Get adapter name as variable

Q

This batch file works, but the adapter name has to be hard coded, is there a way to put the name into a variable from netsh so that the code can be generic?

@echo off
echo Please wait ... Enabling adapter ...

netsh interface show interface name="Wi-Fi" | find /i "DISCONNECTED" >nul && netsh interface set interface "Wi-Fi" ENABLE" netsh interface show interface name="Ethernet" | find /i "DISCONNECTED" >nul && netsh interface set interface "Ethernet" ENABLE"

echo Process completed
timeout /t 10

✍: Guest

A
(This question has not been answered yet. If you know the answer, please share it in a comment below.)

2014-08-29, 2141🔥, 0💬