A user asked for an existing PowerShell script to show published apps by delivery group. A suggested script of Get-BrokerDesktopGroup, Get-BrokerApplication, and Select Name was provided and the user received the necessary help.
Read the entire ‘Existing PS Script to Show Published Apps by Delivery Group’ thread below:
Does anyone have an existing PS script that shows published apps by delivery group?
$DG = Get-BrokerDesktopGroup -AdminAddress servername | where { $_.Name -like "dgname*" } # | Select Uid
Get-BrokerApplication -AdminAddress servername -maxrecord 500000 | where { $_.AllAssociatedDesktopGroupUids -contains $DG.uid } | Select Name | FT
Something like that for a start? I had that just hanging around.Thanks man! I had the apps, just couldnt get the delivery group there also. You rock!
Continue reading and comment on the thread ‘PowerShell Script to Show Published Apps by Delivery Group?’. Not a member? Join Here!
Categories: All Archives, ControlUp Scripts & Triggers