powershell? salve isso como um script .ps1 e execute. (substitua o endereço IP que você gosta ...)
$ ipaddr = Get-WMIObject win32_NetworkAdapterConfiguration | Where-Object {$ .IPEnabled -eq $ true} | Foreach-Object {$ .IPAddress} if ($ ipaddr -eq "10.10.10.10") { "Sim está aqui" } outro { "Não" }