Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Updates an either name of or the note of an existing Range

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

...

Code Block
languagepowershell
Set-UdmRMRange - Identity -Name <String> -Note <string> [<CommonParameters>]

...

ParameterDescriptionClassAccepted optionsConstraintsUsageUniqueAvailable from version
IdentityThe GUID of the range to updateSystem.String

32 hex characters in the format

xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxxxxxx

Required
 v1.0
NameThe name of the range to update.System.String 1 to 40 charactersRequiredOptional v1 v1.0
Note

New comments to add to the range

System.String 1 to 255 charactersRequiredOptional  v1.0

Output

Field NameDescription
idThe GUID of the range changed
nameThe name of the range changed
noteThe name of the range changed
createdByThe GUID of the user that created the range
updatedByThe GUID of the user that just changed the range with this command

Examples

Example 1 

In example 1, the Set-UdmRMRange cmdlet creates a new range with the name Bostoncmdlet changes the note on the range  who's GUID is 86b1087d-83cb-4f23-8768-5e45e742f2dc

Code Block
languagepowershell
Set-UdmRMRange -name Bostonidentity "86b1087d-83cb-4f23-8768-5e45e742f2dc" -note "New building on the corner of 5th and Main"

Example 2

In example 2, the Set-UdmRMRange cmdlet changes the name on the range  who's GUID is 86b1087d-83cb-4f23-8768-5e45e742f2dc

Code Block
languagepowershell
Set-UdmRMRange -identity "86b1087d-83cb-4f23-8768-5e45e742f2dc" -name "Boston Downtown"

See Also

 

Include Page
HOME:Footer
HOME:Footer

...