@echo off TITLE Where am I rem This batch file displays the machine name and domain of the current user rem SS64.com cls echo: echo: echo ---------------------------------- echo: echo Your Username: %Username% echo: echo Your Computer Name: %computername% echo: echo Your Domain: %userdomain% echo: echo ---------------------------------- echo: echo Your IP v4 address... ipconfig |find "IPv4" echo: echo ---------------------------------- echo Your IP v6 address... ipconfig |find "IPv6" echo: echo ---------------------------------- echo: echo: echo Press any key to close this window pause >nul echo: