Category: PowerShell
-
Remove Existing Storage under Hosting node in Citrix Studio – PowerShell way
On the Desktop Studio, there is a menu for adding additional storage but no option for removing the storage once it is configured. However, there is a PowerShell cmdlet Remove-HypHostingUnitStorage that can be used for removing the existing Storage The below is how my datastore connections look like and I am going to demo removing…
-
Creating a new XenDesktop 7 Catalogs gives the error ” The naming scheme is already in use”
This issue occurs if the same naming scheme has been used already -successfully or unsuccessfully. I say unsuccessfully because there may be cases when the catalog creation didn’t complete fully and error-ed making the naming scheme corrupted or invalid. In such cases, there are a few steps that you need to take to ensure that…
-
Deleting a Desktop catalog in XenDesktop 7 gives the error ” The Machine Catalog could not be loaded, unable to find Machine creation data for id”
Citrix says the easiest way to fix a broken catalog is to recreate it. But what if it doesn’t allow you to delete the catalog to recreate it as happened to me. The below error occurred when I tried recreating the desktop catalog in XenDesktop 7. The error message was The Catalog could not be…
-
Published Applications Report in Excel using Powershell
Here is a PowerShell script to extract the published applications in a CSV file. This script could be used for XenApp 6.0 or above farms . I do not own the script so please use this at your own risk. # Create variables asnp citrix* $outpath = [environment]::getfolderpath(“mydocuments”) + “\XenApp_Published_App_Report.csv” $xaapplist = get-xaapplication $appreport=foreach…
