Wednesday, November 21

Published Applications Report in Excel | Powershell

Not my work ofcourse :)

# Create variables

asnp citrix*

$outpath = [environment]::getfolderpath(“mydocuments”) + “\XenApp_Published_App_Report.csv”

$xaapplist = get-xaapplication

$appreport=foreach ($application in $xaapplist)

 {get-xaapplicationreport -BrowserName $application.BrowserName}

# pipe appreport variable and select required objects for output

Tuesday, November 20

Published Applications Report in Excel | VB Script

Keeping here for reference:

'Published Applications Report in Excel

strMbox = MsgBox("Do you want to include all the Applications Details?",3,"Include Details or just Basic?")