I'm trying to get the current active connection with netsh (i'd rather not use wmic) using the following code.
@echo off
FOR /F "tokens=3,*" %%A IN ('netsh interface show interface^|findstr /i "\<connected\>"') DO (
if %%B == .........
)
I only want to account for the default connection names:
Wi-Fi, Ethernet, Wireless Network Connection, Local Area Connection and do something based on that.
eg: if %%B = WiFi or Ethernet or....(
::do something here )
I only want "something" to be executed once because only 1 of those connections will ever be active at any given time.
I think something like this ought to do the trick:
Basically the idea is to look for interfaces that begin with those four different strings, then jump to the label that executes whatever it is you want.
[I'd be remiss if I didn't point out that this is likely better to be done in PowerShell nowadays, but…]