MSFN Forum: Grab IP Using PowerShell - MSFN Forum

Jump to content


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Grab IP Using PowerShell Rate Topic: -----

#1 User is offline   Brando569 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 413
  • Joined: 28-April 04

Posted 13 December 2012 - 10:55 AM

I'm on a computer running Windows XP with PowerShell installed and I would like to be able to grab the IP address from the output of ipconfig, then place it into a variable that will be used as an argument when executing a program. I use Linux on my home computers, so I would know how to do it with shell scripting, but PowerShell is completely different (it reminds me of Java).

I've gotten as far as storing the output of ipconfig in a variable but I don't know how to "grep" it out of all the ouput since I'm not good with RegEx and then store that string into a variable which will be called upon later.


C:\Documents and Settings\bran>ipconfig

Windows IP Configuration


Ethernet adapter Local Area Connection:

        Connection-specific DNS Suffix  . : domain.net
        IP Address. . . . . . . . . . . . : 10.6.16.2
        Subnet Mask . . . . . . . . . . . : 255.255.255.0
        Default Gateway . . . . . . . . . : 10.6.16.1

Ethernet adapter Local Area Connection 2:

        Connection-specific DNS Suffix  . :
        IP Address. . . . . . . . . . . . : 192.168.42.24
        Subnet Mask . . . . . . . . . . . : 255.255.255.0
        Default Gateway . . . . . . . . . : 192.168.42.129



The IP address that I would like to be able to grab is that of Ethernet adapter Local Area Connection 2, the first three octets are always the same (192.168.42) it is only the last octet that changes.

So in short I would like something along the lines of this:
$ip=ipconfig
echo $ip [grab IP address and store it in a variable]
forcebindip $ipaddress c:\program.exe


or for those of you that understand shell scripting
ipconfig | grep "192.168.42"| head -n1| cut -c 30 > $ip
forcebindip $ip c:\program.exe

This post has been edited by Brando569: 13 December 2012 - 10:57 AM



#2 User is offline   jaclaz 

  • The Finder
  • Group: Developers
  • Posts: 11,578
  • Joined: 23-July 04
  • OS:none specified
  • Country: Country Flag

Posted 13 December 2012 - 12:24 PM

NOT what you asked for, but in batch:
http://reboot.pro/topic/5881-ipconfig/
the code is "botched" you may want to use this:
http://pastehtml.com.../b4t99xk89.html

Basically it amounts to:
@ECHO OFF

for /f "tokens=2 delims=:" %%A in ('IPCONFIG^|FIND "IP"') do echo %%A



jaclaz

#3 User is offline   allen2 

  • Not really Newbie
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,753
  • Joined: 13-January 06

Posted 13 December 2012 - 03:49 PM

Taken from there:
((ipconfig | findstr [0-9].\.)[0]).Split()[-1]

It only retrieve the first ip address if you have more than one network adapter.

#4 User is offline   Yzöwl 

  • Wise Owl
  • Group: Super Moderator
  • Posts: 4,369
  • Joined: 13-October 04
  • OS:Windows 7 x64

Posted 13 December 2012 - 04:24 PM

Just a quick follow up batch file using ideas from both jaclaz and allen2:
@ECHO OFF & SETLOCAL ENABLEEXTENSIONS

REM Change the line below to reflect your known IP string
SET KIP=192.168.42

FOR /F "TOKENS=2 DELIMS=:" %%# IN ('IPCONFIG^|FINDSTR/I IP.*%KIP:.=\.%\.') DO (
	CALL :SUB %%#)
PAUSE
GOTO :EOF

:SUB
ECHO=%*
The SUB currently only shows you the relevant IP Address, you would obviously replace that with the code you wish to run, (and when you're happy REMove the PAUSE).

#5 User is offline   cluberti 

  • Gustatus similis pullus
  • Group: Supervisor
  • Posts: 11,219
  • Joined: 09-September 01
  • OS:Windows RT
  • Country: Country Flag

Posted 13 December 2012 - 05:47 PM

I don't know if this works on XP or not as I don't have a box at the moment to check, but if XP has the "Get-NetIPAddress" cmdlet, you could start with this and go from there:
Get-NetIPAddress | Sort-Object -Property InterfaceIndex | Format-Table


Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

2 User(s) are reading this topic
0 members, 2 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2013 msfn.org
Privacy Policy