Get-Brokermachinestartmenushortcuts¶
Retrieves the Start Menu Shortcuts from the specified machine.
Syntax¶
Get-BrokerMachineStartMenuShortcuts [-MachineName] <String> [-AdminAddress <String>] [-BearerToken <String>] [<CommonParameters>]
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.
Related Commands¶
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 |
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'
Description¶
This example retrieves all Start Menu Shortcuts from 'MyDomain\MyMachine'.