Get-CitrixApplication.ps1 (Citrix Top 10)
This script returns Citrix Application Objects.
- With no -AppName passed it will return All application Objects
- With -AppName it will return all apps that match (regex.)
-
# Get-CitrixApplication.ps1
-
# Brandon Shell [MVP]
-
# www.bsonposh.com
-
# Returns Citrix Application Objects for AppName passed or RegEx
-
Param($AppName=".*",$server=$env:ComputerName)
-
$farm.Initialize(1)
-
$farm.Applications | ?{($_.AppName -match $AppName) -or ($_.BrowserName -match $AppName)}
tshell :: Apr.09.2008 :: All, Citrix, Powershell, Scripting :: No Comments »
