Pinned post

Galaxy XR is the first Android XR headset and features Gemini Live that understands your surroundings and lets users interact with apps hands-free (Shahram Izadi/The Keyword)

Shahram Izadi / The Keyword : Galaxy XR is the first Android XR headset and features Gemini Live that understands your surroundings and le...

20 March 2023

Get IP Address

Find the IP Address in a batch script and save it as a variable.


for /f "delims=[] tokens=2" %%a in ('ping -4 -n 1 %ComputerName% ^| findstr [') do set NetworkIP=%%a
echo Network IP: %NetworkIP%
pause