Quick Tips: Citrix Studio Application Folder Rename
Quick Tip, again so I don’t forget.
This should be done on a computer with Citrix Studio and the Citrix PowerShell modules installed. Usually a Delivery Controller.
- Launch an administrative PowerShell prompt.
- Load the Citrix PowerShell modules.
asnp Citrix.*
- Run this to update the “Folder (for users)” with the “Folder (for administrators)” location.
(Get-BrokerApplication | where ClientFolder -ne AdminFolderName) | ForEach-Object{Set-BrokerApplication $_ -ClientFolder ($_.AdminFolderName)}
That’s all for now.