So I like to have a group that can run every and all published application so I can login and at least smoke test them. Thats far to much clicking for me, so powershell to the rescue.
1 2 3 4 5 |
Add-PSSnapIn citrix.xenapp.commands $Groups="Revord\Citrix_Admins" Get-XAApplication | foreach {Add-XAApplicationAccount $_.BrowserName $Groups} |
Those 3 lines gets Citrix_Admins into EVERY published application, not to shabby. Lets take it a bit […]