Skip to content

Get ePOTag

Michael Arranaga edited this page Aug 30, 2019 · 1 revision

external help file: ePOwerShell-help.xml Module Name: ePOwerShell online version: schema: 2.0.0

Get-ePOTag

SYNOPSIS

Finds available tags on the ePO server

SYNTAX

Get-ePOTag [[-Tag] <Object>] [<CommonParameters>]

DESCRIPTION

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.

EXAMPLES

EXAMPLE 1

$Tags = Get-ePOTag

Get all tags from the ePO server

EXAMPLE 2

$Tag = Get-ePOTag 'Tag1'

Get a single tag from the ePO server

PARAMETERS

-Tag

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

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

System.Object[]

NOTES

RELATED LINKS