Monday, June 15, 2015

Managing Windows Server 2012 R2 Using PowerShell : Part-4 : Getting IP Address of the Server.

  1. Part 1 : Windows Server 2012 R2 Installation.
  2. Part 2 : Exploring PowerShell Default Settings.
  3. Part 3 : Getting and setting server name.

5-14-2015 12-24-07 PM[3]

Part - 4 { Information - IP Addresses}

 

In our pervious blog post, we have learned, that how can we get and set the name of "Windows 2012" server.

 

Now, our next step is to find the IP Address of our current server and change it according to our requirements.

 

In "Windows Server 2012" we have a nice set of PowerShell modules, those deals with networking stuff. We can use the Get-Module cmdlet, to get the list of all modules, whose names start with NET.

 

 

Get-Module -ListAvailable *net*

 

6-15-2015 11-46-51 AM

 

Getting current IP Address (the old way).

There are several ways to get the current IP Address of the server. We can get it by using WMI, external commands, and using PowerShell too.

  1. By using ipconfig
    1. ipconfig / all
  2. By using netsh command
    1. netsh interface ip show config name="Ethernet"
  3. By using WMI Query
    1. Get-WmiObject -Query "SELECT IPAddress FROM Win32_NetworkAdapterConfiguration WHERE IPEnabled = 'True'"

Getting current IP Address (the new way).

Ok, we all knows, that PowerShell is a object based language, and it's so cool, in Windows 2012, we have a amazing, nice cmdlet which give us the information of current IP Address.  The cmdlet is called, Get-NetIPConfiguration

Just runt the above cmdlet and it will give you all the information related of our IP-address.

6-15-2015 12-18-13 PM

Cool , No? In the next blog post, we will see about setting IP-Address using PowerShell. Till then take care.

tumblr_m7qsb5MDXF1qavhj0o1_500

Regards.
Aman Dhally
If you like, you can follow me on Twitter and Facebook. You can also check my “You Tube channel for PowerShell video tutorials. You can download all of my scripts from “Microsoft TechNet Gallery”.

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.