Export-IpamRange

Export-IpamRange

Exports all of the IP address ranges of the specified address family from the computer running the IP Address Management (IPAM) server as a comma-separated values (.csv) file or as an array of Windows PowerShell® objects or both.

Syntax

Parameter Set: Default
Export-IpamRange [-AddressFamily] <String> [-Force] [-PassThru] [-Path <String> ] [ <CommonParameters>]

Detailed Description

The Export-IpamRange cmdlet exports all of the IP address ranges of the specified address family from the computer running the IP Address Management (IPAM) server as a comma-separated values (.csv) file or as an array of Windows PowerShell® objects or both.

At least one of the Path or PassThru parameters must be specified with the cmdlet. The object array returned using the PassThru parameter can be pipelined for further filtering, if required.

Unlike localized object export from IPAM client user interface (UI), the field header names and the enumeration value names of IP address range objects exported by Windows PowerShell have English names and are not be localized in the language used by the computer running the IPAM server. The field header names must follow the Windows PowerShell property naming conventions.

Note: The format of date and time values of the exported objects are in localized format of the computer running the IPAM server and not in UTC.

The IPAM client UI and IPAM Windows PowerShell support interoperability between import and export functionality of English and localized .csv files, provided that the language and locale of importing and exporting computers running the IPAM servers and associated UI is the same. In other words a localized .csv file exported from IPAM client UI can be imported using IPAM Windows PowerShell and an English .csv file exported from IPAM Windows PowerShell can be imported from IPAM client UI provided the language and locale of the computers running the IPAM client and IPAM server are the same.

Parameters

-AddressFamily<String>

Specifies the address family of IP address range objects being exported. The acceptable values for this parameter are: IPv4 or IPv6.
This parameter specifies whether the IPv4 or IPv6 records need to be exported. Only one address family at a time can be specified with this cmdlet.

Aliases

none

Required?

true

Position?

2

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

-Force

Specifies that new .csv file generated by export must overwrite the existing .csv file (if present), as specified in the Path parameter.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-PassThru

Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Path<String>

Specifies the literal path and name of the .csv file which are created during export.
This parameter is used to export all of the IP address range objects in a .csv file format.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByPropertyName)

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

  • None

Outputs

The output type is the type of the objects that the cmdlet emits.

  • Microsoft.Windows.Ipam.Commands.IpamIPRangePSObject[]

    This array of objects contains an IPAM IP address range.

Examples

EXAMPLE 1

This example outputs all of the IPv4 address ranges in the file C:\ranges_v4.csv.

PS C:\> Export-IpamRange -AddressFamily IPv4 -Path "C:\ranges_v4.csv"

EXAMPLE 2

This example outputs all of the IPv6 address ranges in the file C:\ranges_v6.csv, and overwrites the file if it already exists.

PS C:\> Export-IpamRange -AddressFamily IPv6 -Path "C:\ranges_v6.csv" -Force

EXAMPLE 3

This example outputs all of the IPv4 address range objects.

PS C:\> Export-IpamRange -AddressFamily IPv4 -PassThru

EXAMPLE 4

This example filters all of the over-utilized IPv4 address range objects.

PS C:\> Export-IpamRange -AddressFamily IPv4 -PassThru | Where-Object -FilterScript { $_.Utilization -Eq "Over" }

EXAMPLE 5

This example filters all of the over utilized IPv4 address range objects and exports the objects in a file C:\overutilized.csv.

PS C:\> Export-IpamRange -AddressFamily IPv4 -PassThru | Where-Object -FilterScript { $_.Utilization -Eq "Over" } | Export-Csv –Path "C:\overutilized.csv"

EXAMPLE 6

This example outputs all of the IPv4 address ranges in the file C:\ranges.csv and also displays the exported ranges.

PS C:\> Export-IpamRange -AddressFamily IPv4 -Path C:\ranges.csv -PassThru

Import-IpamRange

Export-Csv

Where-Object