-
Notifications
You must be signed in to change notification settings - Fork 8
Get ePOTag
Finds available tags on the ePO server
Get-ePOTag [[-Tag] <Object>] [<CommonParameters>]
Finds all available tags from the ePO server. If a tag name is specifed, it searches for only the one tag from the server. If a tag is not specified, then it will return an array of ePOTag objects from the ePO server. Each tag contains an ID, Name, and Description.
$Tags = Get-ePOTag
Get all tags from the ePO server
$Tag = Get-ePOTag 'Tag1'
Get a single tag from the ePO server
This parameter is used to request a specific tag. This can be provided as:
* An ePOTag object
* A tag name
This value can be passed in from the pipeline.
Type: Object
Parameter Sets: (All)
Aliases: TagName
Required: False
Position: 1
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.