New-UdmRMRange

Create a new Range

ItemComment
Availability versionVersion 1.0
Initial release dateJune 27, 2017
Last updated onJune 27, 2017
Related toRanger Documentation

Syntax

New-UdmRMRange -Name <String> [-Note <string>] [<CommonParameters>]

Parameters

ParameterDescriptionClassAccepted optionsConstraintsUsageUniqueAvailable from version
NameThe name of the range to create. This could be the building, campus, city or country where the range will be identified by this name. The name can be anything that you wish to logically group block of numbers under.System.String
1 - 40 charactersRequired
v1.0
Note

Any comments that will aid in understanding of the range.

System.String
1 - 255 charactersOptional
 v1.0

Outputs

Field NameDescription
idThe GUID ID of the Range created for example 76b1084d-83ca-4f23-8768-5e45e742f2cd
nameThe name of the range created this is the same as the name supplied in the command
noteThe note of the range created this is the same as the note supplied in the command or if no note was created this is Null
createdbyThe GUID of the user account which created the range for example 4c1d4183-7a3a-4768-8abb-93bd148c4b19
updatedbyThe GUID of the user account which last changed the range this is always the same as the createdby GUID

Examples

Example 1 

In example 1, the New-UdmRMRange cmdlet creates a new range with the name Boston

New-UdmRMRange -name Boston 

Example 2

In example 2, the range is created with a comment to assist in identify the location

New-UdmRMRange -name Boston -note "Building on the corner of 5th and Main"