Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save littletoyrobots/2b64a0e7126467b2fc4c92cc11249a4c to your computer and use it in GitHub Desktop.
Save littletoyrobots/2b64a0e7126467b2fc4c92cc11249a4c to your computer and use it in GitHub Desktop.
Add-PSSnapin Citrix.*
$IcoPath = "C:\Local\Google.ico"
$Icon = New-BrokerIcon -EncodedIconData ([convert]::ToBase64String((Get-Content $IcoPath -Encoding byte)))
$Params = @{
AdminAddress = "ddc1" # delivery controller
ApplicationType = "PublishedContent"
Name = "Google"
CommandLineExecutable = "https://google.com"
DesktopGroup = "Applications" # Just need a delivery group with resources
IconUid = $Icon.Uid
}
New-BrokerApplication @Params
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment