Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Something like this: run - ipconfig displays a footprint of data on network connections, using the condition in findstr filter the ipconfig output so that there is one line with the desired MAC.
You drive the whole structure into for / f:ipconfig /all | findstr ...
for /f "tokens=... delims=..." %%a in ('ipconfig /all ^| findstr ...') do (
start browser %%a
)
ipconfig /?
findstr /?
for /?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question