Syntax
Get-BrokerIcon -Uid <Int32> [-Property <String[]>] [-AdminAddress <String>] [<CommonParameters>]
Get-BrokerIcon [-Metadata <String>] [-ReturnTotalRecordCount] [-MaxRecordCount <Int32>] [-Skip <Int32>] [-SortBy <String>] [-Filter <String>] [-Property <String[]>] [-AdminAddress <String>] [<CommonParameters>]
Detailed Description
Reads a specific icon by Uid, or enumerates icons by passing no Uid.
-------------------------- BrokerIcon Object
The BrokerIcon object represents a single instance of an icon. It contains the following properties:
-- EncodedIconData (System.String)
The Base64 encoded .ICO format of the icon.
-- MetadataMap (System.Collections.Generic.Dictionary<string, string>)
Metadata for this command
-- Uid (System.Int32)
The UID of the icon itself.
Parameters
-Uid<Int32>
Gets only the icon specified by unique identifier.
Required? |
true |
Default Value |
|
Accept Pipeline Input? |
false |
-Metadata<String>
Gets records with matching metadata entries.
The value being compared with is a concatenation of the key name, a colon, and the value. For example: -Metadata "abc:x*" matches records with a metadata entry having a key name of "abc" and a value starting with the letter "x".
Required? |
false |
Default Value |
|
Accept Pipeline Input? |
false |
-ReturnTotalRecordCount<SwitchParameter>
When specified, this causes the cmdlet to output an error record containing the number of records available. This error record is additional information and does not affect the objects written to the output pipeline. See about_Broker_Filtering for details.
Required? |
false |
Default Value |
False |
Accept Pipeline Input? |
false |
-MaxRecordCount<Int32>
Specifies the maximum number of records to return.
Required? |
false |
Default Value |
250 |
Accept Pipeline Input? |
false |
-Skip<Int32>
Skips the specified number of records before returning results. Also reduces the count returned by -ReturnTotalRecordCount.
Required? |
false |
Default Value |
0 |
Accept Pipeline Input? |
false |
-SortBy<String>
Sorts the results by the specified list of properties. The list is a set of property names separated by commas, semi-colons, or spaces. Optionally, prefix each name with a + or - to indicate ascending or descending order. Ascending order is assumed if no prefix is present.
Required? |
false |
Default Value |
The default sort order is by name or unique identifier. |
Accept Pipeline Input? |
false |
-Filter<String>
Gets records that match a PowerShell style filter expression. See about_Broker_Filtering for details.
Required? |
false |
Default Value |
|
Accept Pipeline Input? |
false |
-Property<String[]>
Specifies the properties to be returned. This is similar to piping the output of the command through Select-Object, but the properties are filtered more efficiently at the server.
Required? |
false |
Default Value |
|
Accept Pipeline Input? |
false |
-AdminAddress<String>
Specifies the address of a XenDesktop controller that the PowerShell snapin will connect to. This can be provided as a host name or an IP address.
Required? |
false |
Default Value |
Localhost. Once a value is provided by any cmdlet, this value will become the default. |
Accept Pipeline Input? |
false |
Input Type
None
Input cannot be piped to this cmdlet.
Return Values
Citrix.Broker.Admin.SDK.Icon
Returns an Icon object for each enumerated icon.
Examples
-------------------------- EXAMPLE 1 --------------------------
Enumerate all icons.
-------------------------- EXAMPLE 2 --------------------------
C:\PS> Get-BrokerIcon -Uid 1
Get the icon with Uid 1.