Citrix Virtual Apps and Desktops SDK

Get-BrokerMachineStartMenuShortcuts

Retrieves the Start Menu Shortcuts from the specified machine.

Syntax


Get-BrokerMachineStartMenuShortcuts [-MachineName] <String> [-AdminAddress <String>] [-BearerToken <String>] [-AdminClientIP <String>] [-TraceParent <String>] [-TraceState <String>] [-VirtualSiteId <String>] [<CommonParameters>]

<!--NeedCopy-->

Detailed Description

Retrieves the shortcuts defined for all the start menu items on a particular machine. The shortcuts obtained are from the ‘All users’ start menu; user-specific shortcuts are not found.

Parameters

Name Description Required? Pipeline Input Default Value
MachineName Specify the name of the machine to use for shortcut retrieval. The machine can be identified by DNS name, short name, SID, or name of the form domain\machine. true true (ByValue)  
AdminAddress 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. false false Localhost. Once a value is provided by any cmdlet, this value will become the default.
BearerToken Specifies the bearer token assigned to the calling user false false  
AdminClientIP Internal use only. false false  
TraceParent Specifies the trace parent assigned for internal diagnostic tracing use false false  
TraceState Specifies the trace state assigned for internal diagnostic tracing use false false  
VirtualSiteId Specifies the virtual site the PowerShell snap-in will connect to. false false  

Input Type

None

You cannot pipe input into this cmdlet.

Return Values

None Or Citrix.Broker.Admin.Sdk.Startmenushorcut

Get-BrokerMachineStartMenuShortcuts generates an array of Citrix.Broker.Admin.SDK.StartMenuShortcut objects.

Examples

Example 1


C:\PS> $shortcuts = Get-BrokerMachineStartMenuShortcuts -MachineName 'MyDomain\MyMachine'

<!--NeedCopy-->

Description

This example retrieves all Start Menu Shortcuts from ‘MyDomain\MyMachine’.

Get-BrokerMachineStartMenuShortcuts