How to set Citrix XenApp 7.6 Policies with PowerShell

I was recently asked how to create Citrix policies with PowerShell and I must admit that it took me some time to figure it out. If you search for solutions you get only a few hints on how to do it. The best hint came from Ingmar Verheij (http://www.ingmarverheij.com/set-citrix-policies-via-powershell/) but things changed a little with the latest XenApp and XenDesktop versions.

Why should we use PowerShell to create Citrix Policies?
Let’s start with some words about why you should use PowerShell and why you should use Citrix Policies without setting them by Group Policy. PowerShell gives us the possibility to create baseline policies for a whole bunch of customers and you can parameterize your installations or you can recreate your home lab automatically.
And… processing local policies should be much faster (I will recheck that argument shortly by comparing the logon duration between locally set Citrix Policies and GPOs).

Now let me explain how to do it:

First of all switch to the following location (you should be doing this on a Controller):

cd "C:\Program Files (x86)\Citrix\Scout\Current\Utilities"

Then import the PowerShell module:

import-module "C:\Program Files (x86)\Citrix\Scout\Current\Utilities\Citrix.GroupPolicy.Commands.psm1"

Let´s check if it is loaded:

get-module

ModuleType Version    Name                                ExportedCommands
---------- -------    ----                                ----------------
Script     0.0        Citrix.GroupPolicy.Commands         {Add-CtxGroupPolicyFilter, Export-CtxGroupPolicy, Get-CtxG...
Manifest   3.1.0.0    Microsoft.PowerShell.Management     {Add-Computer, Add-Content, Checkpoint-Computer, Clear-Con...
Manifest   3.1.0.0    Microsoft.PowerShell.Utility        {Add-Member, Add-Type, Clear-Variable, Compare-Object...}

Looking good. Although Version 0.0 doesn’t produce much confidence.

Now let´s check what commands are available:

get-command -Module Citrix.GroupPolicy.Commands

CommandType     Name                                               ModuleName
-----------     ----                                               ----------
Function        Add-CtxGroupPolicyFilter                           Citrix.GroupPolicy.Commands
Function        Export-CtxGroupPolicy                              Citrix.GroupPolicy.Commands
Function        Get-CtxGroupPolicy                                 Citrix.GroupPolicy.Commands
Function        Get-CtxGroupPolicyConfiguration                    Citrix.GroupPolicy.Commands
Function        Get-CtxGroupPolicyFilter                           Citrix.GroupPolicy.Commands
Function        Import-CtxGroupPolicy                              Citrix.GroupPolicy.Commands
Function        New-CtxGroupPolicy                                 Citrix.GroupPolicy.Commands
Function        Remove-CtxGroupPolicy                              Citrix.GroupPolicy.Commands
Function        Remove-CtxGroupPolicyFilter                        Citrix.GroupPolicy.Commands
Function        Set-CtxGroupPolicy                                 Citrix.GroupPolicy.Commands
Function        Set-CtxGroupPolicyConfiguration                    Citrix.GroupPolicy.Commands
Function        Set-CtxGroupPolicyFilter                           Citrix.GroupPolicy.Commands

We need to create a new PSdrive before we can move on:

new-psdrive -name LocalFarmGpo -psprovider CitrixGroupPolicy -controller localhost \

Name           Used (GB)     Free (GB) Provider      Root                                               CurrentLocation
----           ---------     --------- --------      ----                                               ---------------
LocalFa...                             CitrixGrou... LocalFarmGpo:\

You should name it exactly like shown above (LocalFarmGpo) because for some reason all the functions in the PSM1 module are hardcoded to that PSDrive. Otherwise, you will get errors. Here´s the link to the online documentation: http://docs.citrix.com/en-us/xenapp-and-xendesktop/7-5/cds-sdk-wrapper-rho.html.

See if it´s there:

Get-PSDrive

Name           Used (GB)     Free (GB) Provider      Root                                               CurrentLocation
----           ---------     --------- --------      ----                                               ---------------
Alias                                  Alias
C                  19,61         40,04 FileSystem    C:\                                     Users\Administrator.MACPRO
Cert                                   Certificate   \
D                                      FileSystem    D:\
Env                                    Environment
Function                               Function
HKCU                                   Registry      HKEY_CURRENT_USER
HKLM                                   Registry      HKEY_LOCAL_MACHINE
LocalFa...                             CitrixGrou... LocalFarmGpo:\
LocalGpo                               CitrixGrou... LocalGpo:\
Templates                              CitrixGrou... Templates:\
Variable                               Variable
WSMan                                  WSMan
XDHyp                                  Citrix.Hyp... XDHyp:\

Now we can check how to create a new Citrix policy:

get-help New-CtxGroupPolicy

NAME
    New-CtxGroupPolicy

SYNOPSIS
    Creates group policies.

SYNTAX
    New-CtxGroupPolicy[/fusion_text][/fusion_builder_column][fusion_builder_column type="1_1" layout="1_1" background_position="left top" background_color="" border_size="" border_color="" border_style="solid" spacing="yes" background_image="" background_repeat="no-repeat" padding="" margin_top="0px" margin_bottom="0px" class="" id="" animation_type="" animation_speed="0.3" animation_direction="left" hide_on_mobile="no" center_content="no" min_height="none" last="no" hover_type="none" link="" border_position="all"][fusion_text]

[-PolicyName] [-Type] [-Description ] [-Enabled ] [-Priority
] [-DriveName ] [-WhatIf] [-Confirm] []

DESCRIPTION
This cmdlet creates group policies using Citrix.Common.GroupPolicy provider.

RELATED LINKS
Set-CtxGroupPolicy
Remove-CtxGroupPolicy

REMARKS
To see the examples, type: “get-help New-CtxGroupPolicy -examples”.
For more information, type: “get-help New-CtxGroupPolicy -detailed”.
For technical information, type: “get-help New-CtxGroupPolicy -full”.
For online help, type: “get-help New-CtxGroupPolicy -online”

Okay…

Everything is working and we do know how to create a new GPO:

New-CtxGroupPolicy Test-Policy user

Diving into it:

cd LocalFarmGpo:\

We can now jump into user or computer settings.

Set-CtxGroupPolicyConfiguration Test-Policy user SessionClipboardWriteAllowedFormats Enabled

If you only want to see the settings for a specific Policy you can run:

Get-CtxGroupPolicyConfiguration Test-Policy -ConfiguredOnly

If you want to know all the settings you can set, run the following command:

Get-CtxGroupPolicyConfiguration

This is what it looks like:

policies

Here´s a handy little script that manages to load the Module and creating the PSdrive. You can dive directly with it into the local policies:

# Variables for GPO creation
$PolicyName = Read-Host "Please insert the name of the local Citrix Group Policy you want to create"
$Scope = Read-Host "Please insert the scope of the Policy (user or computer)"

# Import the Module
import-module "C:\Program Files (x86)\Citrix\Scout\Current\Utilities\Citrix.GroupPolicy.Commands.psm1"

# Create the PSDrive
new-psdrive -name LocalFarmGpo -psprovider CitrixGroupPolicy -controller localhost \

# Some commands to get you started...

# Get the available Policies
# Get-CtxGroupPolicy

# Create a new Policy
# New-CtxGroupPolicy $PolicyName $Scope

# Command to retrieve all the configurable items
# Get-CtxGroupPolicyConfiguration

<# Set Policy Settings Set-CtxGroupPolicyConfiguration $PolicyName $Scope SessionClipboardWriteAllowedFormats Enabled or that way... PS C:\> $obj = Get-CtxGroupPolicyConfiguration $PolicyName $Scope
    PS C:\> $obj.SessionClipboardWriteAllowedFormats = "Enabled"
    PS C:\> Set-CtxGroupPolicyConfiguration $obj
#>

# Configurable Policy Settings
<# # Scope Computer PolicyName : Unfiltered Type : Computer VirtualLoopbackPrograms : @{State=NotConfigured; Path=VirtualIP\VirtualLoopbackPrograms} VirtualLoopbackSupport : @{State=NotConfigured; Path=VirtualIP\VirtualLoopbackSupport} EnableAutoUpdateOfControllers : @{State=NotConfigured; Path=VirtualDesktopAgent\EnableAutoUpdateOfControllers} CPUUsageMonitoring_Enable : @{State=NotConfigured; Path=VirtualDesktopAgent\CPUUsageMonitoring\CPUUsageMonitoring_Enable} CPUUsageMonitoring_Period : @{State=NotConfigured; Value=60; Path=VirtualDesktopAgent\CPUUsageMonitoring\CPUUsageMonitoring_Period} CPUUsageMonitoring_Threshold : @{State=NotConfigured; Value=95; Path=VirtualDesktopAgent\CPUUsageMonitoring\CPUUsageMonitoring_Threshold} ExclusionList_Part : @{State=NotConfigured; Path=UserProfileManager\RegistrySettings\ExclusionList_Part} IncludeListRegistry_Part : @{State=NotConfigured; Path=UserProfileManager\RegistrySettings\IncludeListRegistry_Part} PSAlwaysCache : @{State=NotConfigured; Path=UserProfileManager\PSSettings\PSAlwaysCache} PSAlwaysCache_Part : @{State=NotConfigured; Value=0; Path=UserProfileManager\PSSettings\PSAlwaysCache_Part} PSEnabled : @{State=NotConfigured; Path=UserProfileManager\PSSettings\PSEnabled} PSPendingLockTimeout : @{State=NotConfigured; Value=1; Path=UserProfileManager\PSSettings\PSPendingLockTimeout} PSUserGroups_Part : @{State=NotConfigured; Path=UserProfileManager\PSSettings\PSUserGroups_Part} DeleteCachedProfilesOnLogoff : @{State=NotConfigured; Path=UserProfileManager\ProfileHandling\DeleteCachedProfilesOnLogoff} LocalProfileConflictHandling_Part : @{State=NotConfigured; Value=Use; Path=UserProfileManager\ProfileHandling\LocalProfileConflictHandling_Part} MigrateWindowsProfilesToUserStore_Part : @{State=NotConfigured; Value=All; Path=UserProfileManager\ProfileHandling\MigrateWindowsProfilesToUserStore_Part} ProfileDeleteDelay_Part : @{State=NotConfigured; Value=0; Path=UserProfileManager\ProfileHandling\ProfileDeleteDelay_Part} TemplateProfileIsMandatory : @{State=NotConfigured; Path=UserProfileManager\ProfileHandling\TemplateProfileIsMandatory} TemplateProfileOverridesLocalProfile : @{State=NotConfigured; Path=UserProfileManager\ProfileHandling\TemplateProfileOverridesLocalProfile} TemplateProfileOverridesRoamingProfile : @{State=NotConfigured; Path=UserProfileManager\ProfileHandling\TemplateProfileOverridesRoamingProfile} TemplateProfilePath : @{State=NotConfigured; Value=; Path=UserProfileManager\ProfileHandling\TemplateProfilePath} DebugFilePath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\LogSettings\DebugFilePath_Part} DebugMode : @{State=NotConfigured; Path=UserProfileManager\LogSettings\DebugMode} LogLevel_ActiveDirectoryActions : @{State=NotConfigured; Path=UserProfileManager\LogSettings\LogLevel_ActiveDirectoryActions} LogLevel_FileSystemActions : @{State=NotConfigured; Path=UserProfileManager\LogSettings\LogLevel_FileSystemActions} LogLevel_FileSystemNotification : @{State=NotConfigured; Path=UserProfileManager\LogSettings\LogLevel_FileSystemNotification} LogLevel_Information : @{State=NotConfigured; Path=UserProfileManager\LogSettings\LogLevel_Information} LogLevel_Logoff : @{State=NotConfigured; Path=UserProfileManager\LogSettings\LogLevel_Logoff} LogLevel_Logon : @{State=NotConfigured; Path=UserProfileManager\LogSettings\LogLevel_Logon} LogLevel_PolicyUserLogon : @{State=NotConfigured; Path=UserProfileManager\LogSettings\LogLevel_PolicyUserLogon} LogLevel_RegistryActions : @{State=NotConfigured; Path=UserProfileManager\LogSettings\LogLevel_RegistryActions} LogLevel_RegistryDifference : @{State=NotConfigured; Path=UserProfileManager\LogSettings\LogLevel_RegistryDifference} LogLevel_UserName : @{State=NotConfigured; Path=UserProfileManager\LogSettings\LogLevel_UserName} LogLevel_Warnings : @{State=NotConfigured; Path=UserProfileManager\LogSettings\LogLevel_Warnings} MaxLogSize_Part : @{State=NotConfigured; Value=1048576; Path=UserProfileManager\LogSettings\MaxLogSize_Part} MirrorFoldersList_Part : @{State=NotConfigured; Path=UserProfileManager\FileSystemSettings\FSSynchronization\MirrorFoldersList_Part} SyncDirList_Part : @{State=NotConfigured; Path=UserProfileManager\FileSystemSettings\FSSynchronization\SyncDirList_Part} SyncFileList_Part : @{State=NotConfigured; Path=UserProfileManager\FileSystemSettings\FSSynchronization\SyncFileList_Part} ExclusionListSyncDir_Part : @{State=NotConfigured; Path=UserProfileManager\FileSystemSettings\FSExclusions\ExclusionListSyncDir_Part} ExclusionListSyncFiles_Part : @{State=NotConfigured; Path=UserProfileManager\FileSystemSettings\FSExclusions\ExclusionListSyncFiles_Part} CPEnable : @{State=NotConfigured; Path=UserProfileManager\CPSettings\CPEnable} CPMigrationFromBaseProfileToCPStore : @{State=NotConfigured; Path=UserProfileManager\CPSettings\CPMigrationFromBaseProfileToCPStore} CPPathData : @{State=NotConfigured; Value=; Path=UserProfileManager\CPSettings\CPPathData} CPSchemaPathData : @{State=NotConfigured; Value=; Path=UserProfileManager\CPSettings\CPSchemaPathData} CPUserGroups_Part : @{State=NotConfigured; Path=UserProfileManager\CPSettings\CPUserGroups_Part} DATPath_Part : @{State=NotConfigured; Value=Windows; Path=UserProfileManager\BasicSettings\DATPath_Part} ExcludedGroups_Part : @{State=NotConfigured; Path=UserProfileManager\BasicSettings\ExcludedGroups_Part} OfflineSupport : @{State=NotConfigured; Path=UserProfileManager\BasicSettings\OfflineSupport} ProcessAdmins : @{State=NotConfigured; Path=UserProfileManager\BasicSettings\ProcessAdmins} ProcessedGroups_Part : @{State=NotConfigured; Path=UserProfileManager\BasicSettings\ProcessedGroups_Part} PSMidSessionWriteBack : @{State=NotConfigured; Path=UserProfileManager\BasicSettings\PSMidSessionWriteBack} ServiceActive : @{State=NotConfigured; Path=UserProfileManager\BasicSettings\ServiceActive} DisableDynamicConfig : @{State=NotConfigured; Path=UserProfileManager\AdvancedSettings\DisableDynamicConfig} LoadRetries_Part : @{State=NotConfigured; Value=5; Path=UserProfileManager\AdvancedSettings\LoadRetries_Part} LogoffRatherThanTempProfile : @{State=NotConfigured; Path=UserProfileManager\AdvancedSettings\LogoffRatherThanTempProfile} ProcessCookieFiles : @{State=NotConfigured; Path=UserProfileManager\AdvancedSettings\ProcessCookieFiles} ConcurrentLogonsTolerance : @{State=NotConfigured; Value=2; Path=LoadManagement\ConcurrentLogonsTolerance} CPUUsage : @{State=NotConfigured; Value=-1; Path=LoadManagement\CPUUsage} CPUUsageExcludedProcessPriority : @{State=NotConfigured; Value=BelowNormalOrLow; Path=LoadManagement\CPUUsageExcludedProcessPriority} DiskUsage : @{State=NotConfigured; Value=-1; Path=LoadManagement\DiskUsage} MaximumNumberOfSessions : @{State=NotConfigured; Value=250; Path=LoadManagement\MaximumNumberOfSessions} MemoryUsage : @{State=NotConfigured; Value=-1; Path=LoadManagement\MemoryUsage} MemoryUsageBaseLoad : @{State=NotConfigured; Value=768; Path=LoadManagement\MemoryUsageBaseLoad} IcaListenerPortNumber : @{State=NotConfigured; Value=1494; Path=ICA\IcaListenerPortNumber} IcaListenerTimeout : @{State=NotConfigured; Value=120000; Path=ICA\IcaListenerTimeout} AcceptWebSocketsConnections : @{State=NotConfigured; Path=ICA\WebSockets\AcceptWebSocketsConnections} WebSocketsPort : @{State=NotConfigured; Value=8008; Path=ICA\WebSockets\WebSocketsPort} WSTrustedOriginServerList : @{State=NotConfigured; Value=*; Path=ICA\WebSockets\WSTrustedOriginServerList} SessionReliabilityConnections : @{State=NotConfigured; Path=ICA\SessionReliability\SessionReliabilityConnections} SessionReliabilityPort : @{State=NotConfigured; Value=2598; Path=ICA\SessionReliability\SessionReliabilityPort} SessionReliabilityTimeout : @{State=NotConfigured; Value=180; Path=ICA\SessionReliability\SessionReliabilityTimeout} IdleTimerInterval : @{State=NotConfigured; Value=0; Path=ICA\ServerLimits\IdleTimerInterval} UpsCgpPort : @{State=NotConfigured; Value=7229; Path=ICA\Printing\UniversalPrintServer\UpsCgpPort} UpsEnable : @{State=NotConfigured; Value=UpsDisabled; Path=ICA\Printing\UniversalPrintServer\UpsEnable} UpsHttpPort : @{State=NotConfigured; Value=8080; Path=ICA\Printing\UniversalPrintServer\UpsHttpPort} MultimediaAcceleration : @{State=NotConfigured; Path=ICA\Multimedia\MultimediaAcceleration} MultimediaAccelerationDefaultBufferSize : @{State=NotConfigured; Value=5; Path=ICA\Multimedia\MultimediaAccelerationDefaultBufferSize} MultimediaAccelerationEnableCSF : @{State=NotConfigured; Path=ICA\Multimedia\MultimediaAccelerationEnableCSF} MultimediaAccelerationUseDefaultBufferSize : @{State=NotConfigured; Path=ICA\Multimedia\MultimediaAccelerationUseDefaultBufferSize} MultimediaConferencing : @{State=NotConfigured; Path=ICA\Multimedia\MultimediaConferencing} MultiPortPolicy : @{State=NotConfigured; Value=; Path=ICA\MSI\MultiPortPolicy} MultiStreamPolicy : @{State=NotConfigured; Path=ICA\MSI\MultiStreamPolicy} RtpAudioPortRange : @{State=NotConfigured; Value=16500,16509; Path=ICA\MSI\RtpAudioPortRange} UDPAudioOnServer : @{State=NotConfigured; Path=ICA\MSI\UDPAudioOnServer} AllowLocalAppAccess : @{State=NotConfigured; Path=ICA\LocalAppAccess\AllowLocalAppAccess} URLRedirectionBlackList : @{State=NotConfigured; Path=ICA\LocalAppAccess\URLRedirectionBlackList} URLRedirectionWhiteList : @{State=NotConfigured; Path=ICA\LocalAppAccess\URLRedirectionWhiteList} IcaKeepAlives : @{State=NotConfigured; Value=DoNotSendKeepAlives; Path=ICA\KeepAlive\IcaKeepAlives} IcaKeepAliveTimeout : @{State=NotConfigured; Value=60; Path=ICA\KeepAlive\IcaKeepAliveTimeout} DisplayDegradePreference : @{State=NotConfigured; Value=ColorDepth; Path=ICA\Graphics\DisplayDegradePreference} DisplayDegradeUserNotification : @{State=NotConfigured; Path=ICA\Graphics\DisplayDegradeUserNotification} DisplayMemoryLimit : @{State=NotConfigured; Value=65536; Path=ICA\Graphics\DisplayMemoryLimit} DynamicPreview : @{State=NotConfigured; Path=ICA\Graphics\DynamicPreview} ImageCaching : @{State=NotConfigured; Path=ICA\Graphics\ImageCaching} LegacyGraphicsMode : @{State=NotConfigured; Path=ICA\Graphics\LegacyGraphicsMode} MaximumColorDepth : @{State=NotConfigured; Value=BitsPerPixel32; Path=ICA\Graphics\MaximumColorDepth} QueueingAndTossing : @{State=NotConfigured; Path=ICA\Graphics\QueueingAndTossing} PersistentCache : @{State=NotConfigured; Value=3000000; Path=ICA\Graphics\Caching\PersistentCache} EnhancedDesktopExperience : @{State=NotConfigured; Path=ICA\EnhancedDesktopExperience\EnhancedDesktopExperience} IcaRoundTripCalculation : @{State=NotConfigured; Path=ICA\EndUserMonitoring\IcaRoundTripCalculation} IcaRoundTripCalculationInterval : @{State=NotConfigured; Value=15; Path=ICA\EndUserMonitoring\IcaRoundTripCalculationInterval} IcaRoundTripCalculationWhenIdle : @{State=NotConfigured; Path=ICA\EndUserMonitoring\IcaRoundTripCalculationWhenIdle} AutoClientReconnect : @{State=NotConfigured; Path=ICA\AutoClientReconnect\AutoClientReconnect} AutoClientReconnectAuthenticationRequired : @{State=NotConfigured; Value=DoNotRequireAuthentication; Path=ICA\AutoClientReconnect\AutoClientReconnectAuthenticationRequired} AutoClientReconnectLogging : @{State=NotConfigured; Value=DoNotLogAutoReconnectEvents; Path=ICA\AutoClientReconnect\AutoClientReconnectLogging} AdvanceWarningFrequency : @{State=NotConfigured; Value=01:00:00; Path=ConfigMgr\AdvanceWarningFrequency} AdvanceWarningMessageBody : @{State=NotConfigured; Value={TIMESTAMP} Please save your work. The system will go offline for maintenance in {TIMELEFT}; Path=ConfigMgr\AdvanceWarningMessageBody} AdvanceWarningMessageTitle : @{State=NotConfigured; Value=Upcoming Maintenance; Path=ConfigMgr\AdvanceWarningMessageTitle} AdvanceWarningPeriod : @{State=NotConfigured; Value=16:00:00; Path=ConfigMgr\AdvanceWarningPeriod} AgentTaskInterval : @{State=NotConfigured; Value=00:05:00; Path=ConfigMgr\AgentTaskInterval} FinalForceLogoffMessageBody : @{State=NotConfigured; Value=The system is currently going offline for maintenance; Path=ConfigMgr\FinalForceLogoffMessageBody} FinalForceLogoffMessageTitle : @{State=NotConfigured; Value=Notification From IT Staff; Path=ConfigMgr\FinalForceLogoffMessageTitle} ForceLogoffGracePeriod : @{State=NotConfigured; Value=00:05:00; Path=ConfigMgr\ForceLogoffGracePeriod} ForceLogoffMessageBody : @{State=NotConfigured; Value={TIMESTAMP} Please save your work. The system will go offline for maintenance in {TIMELEFT}; Path=ConfigMgr\ForceLogoffMessageBody} ForceLogoffMessageTitle : @{State=NotConfigured; Value=Notification From IT Staff; Path=ConfigMgr\ForceLogoffMessageTitle} ImageProviderIntegrationEnabled : @{State=NotConfigured; Path=ConfigMgr\ImageProviderIntegrationEnabled} RebootMessageBody : @{State=NotConfigured; Value=The system is currently going offline for maintenance; Path=ConfigMgr\RebootMessageBody} # Scope User PolicyName : Unfiltered Type : User ProfileLoadTimeMonitoring_Enable : @{State=NotConfigured; Path=VirtualDesktopAgent\ProfileLoadTimeMonitoring\ProfileLoadTimeMonitoring_Enable} ProfileLoadTimeMonitoring_Threshold : @{State=NotConfigured; Value=60; Path=VirtualDesktopAgent\ProfileLoadTimeMonitoring\ProfileLoadTimeMonitoring_Threshold} ICALatencyMonitoring_Enable : @{State=NotConfigured; Path=VirtualDesktopAgent\ICALatencyMonitoring\ICALatencyMonitoring_Enable} ICALatencyMonitoring_Period : @{State=NotConfigured; Value=30; Path=VirtualDesktopAgent\ICALatencyMonitoring\ICALatencyMonitoring_Period} ICALatencyMonitoring_Threshold : @{State=NotConfigured; Value=200; Path=VirtualDesktopAgent\ICALatencyMonitoring\ICALatencyMonitoring_Threshold} EnableLossless : @{State=NotConfigured; Path=VirtualDesktopAgent\HDX3DPro\EnableLossless} ProGraphicsObj : @{State=NotConfigured; Value=6553600; Path=VirtualDesktopAgent\HDX3DPro\ProGraphicsObj} FRVideos_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRVideos\FRVideos_Part} FRVideosPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRVideos\FRVideosPath_Part} FRStartMenu_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRStartMenu\FRStartMenu_Part} FRStartMenuPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRStartMenu\FRStartMenuPath_Part} FRSearches_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRSearches\FRSearches_Part} FRSearchesPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRSearches\FRSearchesPath_Part} FRSavedGames_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRSavedGames\FRSavedGames_Part} FRSavedGamesPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRSavedGames\FRSavedGamesPath_Part} FRPictures_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRPictures\FRPictures_Part} FRPicturesPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRPictures\FRPicturesPath_Part} FRMusic_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRMusic\FRMusic_Part} FRMusicPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRMusic\FRMusicPath_Part} FRLinks_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRLinks\FRLinks_Part} FRLinksPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRLinks\FRLinksPath_Part} FRFavorites_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRFavorites\FRFavorites_Part} FRFavoritesPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRFavorites\FRFavoritesPath_Part} FRDownloads_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRDownloads\FRDownloads_Part} FRDownloadsPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRDownloads\FRDownloadsPath_Part} FRDocuments_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRDocuments\FRDocuments_Part} FRDocumentsPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRDocuments\FRDocumentsPath_Part} FRDesktop_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRDesktop\FRDesktop_Part} FRDesktopPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRDesktop\FRDesktopPath_Part} FRContacts_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRContacts\FRContacts_Part} FRContactsPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRContacts\FRContactsPath_Part} FRAdminAccess_Part : @{State=NotConfigured; Path=UserProfileManager\FolderRedirection\FRCommonSettings\FRAdminAccess_Part} FRIncDomainName_Part : @{State=NotConfigured; Path=UserProfileManager\FolderRedirection\FRCommonSettings\FRIncDomainName_Part} FRAppData_Part : @{State=NotConfigured; Value=RedirectUncPath; Path=UserProfileManager\FolderRedirection\FRAppData\FRAppData_Part} FRAppDataPath_Part : @{State=NotConfigured; Value=; Path=UserProfileManager\FolderRedirection\FRAppData\FRAppDataPath_Part} StorefrontAccountsList : @{State=NotConfigured; Path=Receiver\StorefrontAccountsList} ClientClipboardWriteAllowedFormats : @{State=NotConfigured; Path=ICA\ClientClipboardWriteAllowedFormats} ClipboardRedirection : @{State=NotConfigured; Path=ICA\ClipboardRedirection} DesktopLaunchForNonAdmins : @{State=NotConfigured; Path=ICA\DesktopLaunchForNonAdmins} NonPublishedProgramLaunching : @{State=NotConfigured; Path=ICA\NonPublishedProgramLaunching} ReadonlyClipboard : @{State=NotConfigured; Path=ICA\ReadonlyClipboard} RestrictClientClipboardWrite : @{State=NotConfigured; Path=ICA\RestrictClientClipboardWrite} RestrictSessionClipboardWrite : @{State=NotConfigured; Path=ICA\RestrictSessionClipboardWrite} SessionClipboardWriteAllowedFormats : @{State=NotConfigured; Path=ICA\SessionClipboardWriteAllowedFormats} FramesPerSecond : @{State=NotConfigured; Value=30; Path=ICA\VisualDisplay\FramesPerSecond} VisualQuality : @{State=NotConfigured; Value=Medium; Path=ICA\VisualDisplay\VisualQuality} ExtraColorCompression : @{State=NotConfigured; Path=ICA\VisualDisplay\StillImages\ExtraColorCompression} ExtraColorCompressionThreshold : @{State=NotConfigured; Value=8192; Path=ICA\VisualDisplay\StillImages\ExtraColorCompressionThreshold} LossyCompressionLevel : @{State=NotConfigured; Value=Medium; Path=ICA\VisualDisplay\StillImages\LossyCompressionLevel} LossyCompressionThreshold : @{State=NotConfigured; Value=2147483647; Path=ICA\VisualDisplay\StillImages\LossyCompressionThreshold} ProgressiveHeavyweightCompression : @{State=NotConfigured; Path=ICA\VisualDisplay\StillImages\ProgressiveHeavyweightCompression} MinimumAdaptiveDisplayJpegQuality : @{State=NotConfigured; Value=Normal; Path=ICA\VisualDisplay\MovingImages\MinimumAdaptiveDisplayJpegQuality} MovingImageCompressionConfiguration : @{State=NotConfigured; Path=ICA\VisualDisplay\MovingImages\MovingImageCompressionConfiguration} ProgressiveCompressionLevel : @{State=NotConfigured; Value=None; Path=ICA\VisualDisplay\MovingImages\ProgressiveCompressionLevel} ProgressiveCompressionThreshold : @{State=NotConfigured; Value=2147483647; Path=ICA\VisualDisplay\MovingImages\ProgressiveCompressionThreshold} TargetedMinimumFramesPerSecond : @{State=NotConfigured; Value=10; Path=ICA\VisualDisplay\MovingImages\TargetedMinimumFramesPerSecond} UsbDeviceRedirection : @{State=NotConfigured; Path=ICA\USBDevices\UsbDeviceRedirection} UsbDeviceRedirectionRules : @{State=NotConfigured; Path=ICA\USBDevices\UsbDeviceRedirectionRules} UsbPlugAndPlayRedirection : @{State=NotConfigured; Path=ICA\USBDevices\UsbPlugAndPlayRedirection} TwainCompressionLevel : @{State=NotConfigured; Value=Medium; Path=ICA\TWAINDevices\TwainCompressionLevel} TwainRedirection : @{State=NotConfigured; Path=ICA\TWAINDevices\TwainRedirection} LocalTimeEstimation : @{State=NotConfigured; Path=ICA\TimeZoneControl\LocalTimeEstimation} SessionTimeZone : @{State=NotConfigured; Value=UseServerTimeZone; Path=ICA\TimeZoneControl\SessionTimeZone} SessionConnectionTimer : @{State=NotConfigured; Path=ICA\SessionLimits\SessionConnectionTimer} SessionConnectionTimerInterval : @{State=NotConfigured; Value=1440; Path=ICA\SessionLimits\SessionConnectionTimerInterval} SessionDisconnectTimer : @{State=NotConfigured; Path=ICA\SessionLimits\SessionDisconnectTimer} SessionDisconnectTimerInterval : @{State=NotConfigured; Value=1440; Path=ICA\SessionLimits\SessionDisconnectTimerInterval} SessionIdleTimer : @{State=NotConfigured; Path=ICA\SessionLimits\SessionIdleTimer} SessionIdleTimerInterval : @{State=NotConfigured; Value=1440; Path=ICA\SessionLimits\SessionIdleTimerInterval} MinimumEncryptionLevel : @{State=NotConfigured; Value=Basic; Path=ICA\Security\MinimumEncryptionLevel} AutoCreationEventLogPreference : @{State=NotConfigured; Value=LogErrorsAndWarnings; Path=ICA\Printing\AutoCreationEventLogPreference} ClientPrinterRedirection : @{State=NotConfigured; Path=ICA\Printing\ClientPrinterRedirection} DefaultClientPrinter : @{State=NotConfigured; Value=ClientDefault; Path=ICA\Printing\DefaultClientPrinter} PrinterAssignments : @{State=NotConfigured; Path=ICA\Printing\PrinterAssignments} SessionPrinters : @{State=NotConfigured; Path=ICA\Printing\SessionPrinters} WaitForPrintersToBeCreated : @{State=NotConfigured; Path=ICA\Printing\WaitForPrintersToBeCreated} UpsPrintStreamInputBandwidthLimit : @{State=NotConfigured; Value=0; Path=ICA\Printing\UniversalPrintServer\UpsPrintStreamInputBandwidthLimit} DPILimit : @{State=NotConfigured; Value=Unlimited; Path=ICA\Printing\UniversalPrinting\DPILimit} EMFProcessingMode : @{State=NotConfigured; Value=SpoolDirectlyToPrinter; Path=ICA\Printing\UniversalPrinting\EMFProcessingMode} ImageCompressionLimit : @{State=NotConfigured; Value=LosslessCompression; Path=ICA\Printing\UniversalPrinting\ImageCompressionLimit} UniversalPrintingPreviewPreference : @{State=NotConfigured; Value=NoPrintPreview; Path=ICA\Printing\UniversalPrinting\UniversalPrintingPreviewPreference} UPDCompressionDefaults : @{State=NotConfigured; Value=ImageCompression=StandardQuality,HeavyweightCompression=False,ImageCaching=True,FontCaching=True,AllowNonAdminsToModify=False; Path=ICA\Printing\UniversalPrinting\UPDCompressionDefaults} InboxDriverAutoInstallation : @{State=NotConfigured; Path=ICA\Printing\Drivers\InboxDriverAutoInstallation} UniversalDriverPriority : @{State=NotConfigured; Values=System.Object[]; Value=EMF;XPS;PCL5c;PCL4;PS; Path=ICA\Printing\Drivers\UniversalDriverPriority} UniversalPrintDriverUsage : @{State=NotConfigured; Value=FallbackToUpd; Path=ICA\Printing\Drivers\UniversalPrintDriverUsage} AutoCreatePDFPrinter : @{State=NotConfigured; Path=ICA\Printing\ClientPrinters\AutoCreatePDFPrinter} ClientPrinterAutoCreation : @{State=NotConfigured; Value=AllPrinters; Path=ICA\Printing\ClientPrinters\ClientPrinterAutoCreation} ClientPrinterNames : @{State=NotConfigured; Value=StandardPrinterNames; Path=ICA\Printing\ClientPrinters\ClientPrinterNames} DirectConnectionsToPrintServers : @{State=NotConfigured; Path=ICA\Printing\ClientPrinters\DirectConnectionsToPrintServers} GenericUniversalPrinterAutoCreation : @{State=NotConfigured; Path=ICA\Printing\ClientPrinters\GenericUniversalPrinterAutoCreation} PrinterDriverMappings : @{State=NotConfigured; Path=ICA\Printing\ClientPrinters\PrinterDriverMappings} PrinterPropertiesRetention : @{State=NotConfigured; Value=FallbackToProfile; Path=ICA\Printing\ClientPrinters\PrinterPropertiesRetention} RetainedAndRestoredClientPrinters : @{State=NotConfigured; Path=ICA\Printing\ClientPrinters\RetainedAndRestoredClientPrinters} ClientComPortRedirection : @{State=NotConfigured; Path=ICA\Ports\ClientComPortRedirection} ClientComPortsAutoConnection : @{State=NotConfigured; Path=ICA\Ports\ClientComPortsAutoConnection} ClientLptPortRedirection : @{State=NotConfigured; Path=ICA\Ports\ClientLptPortRedirection} ClientLptPortsAutoConnection : @{State=NotConfigured; Path=ICA\Ports\ClientLptPortsAutoConnection} MultimediaOptimization : @{State=NotConfigured; Path=ICA\Multimedia\MultimediaOptimization} UseGPUForMultimediaOptimization : @{State=NotConfigured; Path=ICA\Multimedia\UseGPUForMultimediaOptimization} VideoQuality : @{State=NotConfigured; Value=Unconfigured; Path=ICA\Multimedia\VideoQuality} MultiStream : @{State=NotConfigured; Path=ICA\MSI\MultiStream} AutoKeyboardPopUp : @{State=NotConfigured; Path=ICA\MobileExperience\AutoKeyboardPopUp} ComboboxRemoting : @{State=NotConfigured; Path=ICA\MobileExperience\ComboboxRemoting} MobileDesktop : @{State=NotConfigured; Path=ICA\MobileExperience\MobileDesktop} AllowVisuallyLosslessCompression : @{State=NotConfigured; Path=ICA\Graphics\AllowVisuallyLosslessCompression} AsynchronousWrites : @{State=NotConfigured; Path=ICA\FileRedirection\AsynchronousWrites} AutoConnectDrives : @{State=NotConfigured; Path=ICA\FileRedirection\AutoConnectDrives} ClientDriveLetterPreservation : @{State=NotConfigured; Path=ICA\FileRedirection\ClientDriveLetterPreservation} ClientDriveRedirection : @{State=NotConfigured; Path=ICA\FileRedirection\ClientDriveRedirection} ClientFixedDrives : @{State=NotConfigured; Path=ICA\FileRedirection\ClientFixedDrives} ClientFloppyDrives : @{State=NotConfigured; Path=ICA\FileRedirection\ClientFloppyDrives} ClientNetworkDrives : @{State=NotConfigured; Path=ICA\FileRedirection\ClientNetworkDrives} ClientOpticalDrives : @{State=NotConfigured; Path=ICA\FileRedirection\ClientOpticalDrives} ClientRemoveableDrives : @{State=NotConfigured; Path=ICA\FileRedirection\ClientRemoveableDrives} HostToClientRedirection : @{State=NotConfigured; Path=ICA\FileRedirection\HostToClientRedirection} ReadOnlyMappedDrive : @{State=NotConfigured; Path=ICA\FileRedirection\ReadOnlyMappedDrive} SpecialFolderRedirection : @{State=NotConfigured; Path=ICA\FileRedirection\SpecialFolderRedirection} AeroRedirection : @{State=NotConfigured; Path=ICA\DesktopUI\AeroRedirection} DesktopWallpaper : @{State=NotConfigured; Path=ICA\DesktopUI\DesktopWallpaper} GraphicsQuality : @{State=NotConfigured; Value=Medium; Path=ICA\DesktopUI\GraphicsQuality} MenuAnimation : @{State=NotConfigured; Path=ICA\DesktopUI\MenuAnimation} WindowContentsVisibleWhileDragging : @{State=NotConfigured; Path=ICA\DesktopUI\WindowContentsVisibleWhileDragging} AllowLocationServices : @{State=NotConfigured; Path=ICA\ClientSensors\Location\AllowLocationServices} AudioBandwidthLimit : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\AudioBandwidthLimit} AudioBandwidthPercent : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\AudioBandwidthPercent} ClipboardBandwidthLimit : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\ClipboardBandwidthLimit} ClipboardBandwidthPercent : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\ClipboardBandwidthPercent} ComPortBandwidthLimit : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\ComPortBandwidthLimit} ComPortBandwidthPercent : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\ComPortBandwidthPercent} FileRedirectionBandwidthLimit : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\FileRedirectionBandwidthLimit} FileRedirectionBandwidthPercent : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\FileRedirectionBandwidthPercent} HDXMultimediaBandwidthLimit : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\HDXMultimediaBandwidthLimit} HDXMultimediaBandwidthPercent : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\HDXMultimediaBandwidthPercent} LptBandwidthLimit : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\LptBandwidthLimit} LptBandwidthLimitPercent : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\LptBandwidthLimitPercent} OverallBandwidthLimit : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\OverallBandwidthLimit} PrinterBandwidthLimit : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\PrinterBandwidthLimit} PrinterBandwidthPercent : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\PrinterBandwidthPercent} TwainBandwidthLimit : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\TwainBandwidthLimit} TwainBandwidthPercent : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\TwainBandwidthPercent} USBBandwidthLimit : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\USBBandwidthLimit} USBBandwidthPercent : @{State=NotConfigured; Value=0; Path=ICA\Bandwidth\USBBandwidthPercent} AllowRtpAudio : @{State=NotConfigured; Path=ICA\Audio\AllowRtpAudio} AudioPlugNPlay : @{State=NotConfigured; Path=ICA\Audio\AudioPlugNPlay} AudioQuality : @{State=NotConfigured; Value=High; Path=ICA\Audio\AudioQuality} ClientAudioRedirection : @{State=NotConfigured; Path=ICA\Audio\ClientAudioRedirection} MicrophoneRedirection : @{State=NotConfigured; Path=ICA\Audio\MicrophoneRedirection} FlashAcceleration : @{State=NotConfigured; Path=ICA\AdobeFlashDelivery\HDXMediaStreamForFlash\FlashAcceleration} FlashBackwardsCompatibility : @{State=NotConfigured; Path=ICA\AdobeFlashDelivery\HDXMediaStreamForFlash\FlashBackwardsCompatibility} FlashDefaultBehavior : @{State=NotConfigured; Value=Enable; Path=ICA\AdobeFlashDelivery\HDXMediaStreamForFlash\FlashDefaultBehavior} FlashEventLogging : @{State=NotConfigured; Path=ICA\AdobeFlashDelivery\HDXMediaStreamForFlash\FlashEventLogging} FlashIntelligentFallback : @{State=NotConfigured; Path=ICA\AdobeFlashDelivery\HDXMediaStreamForFlash\FlashIntelligentFallback} FlashLatencyThreshold : @{State=NotConfigured; Value=30; Path=ICA\AdobeFlashDelivery\HDXMediaStreamForFlash\FlashLatencyThreshold} FlashServerSideContentFetchingWhitelist : @{State=NotConfigured; Path=ICA\AdobeFlashDelivery\HDXMediaStreamForFlash\FlashServerSideContentFetchingWhitelist} FlashUrlColorList : @{State=NotConfigured; Path=ICA\AdobeFlashDelivery\HDXMediaStreamForFlash\FlashUrlColorList} FlashUrlCompatibilityList : @{State=NotConfigured; Path=ICA\AdobeFlashDelivery\HDXMediaStreamForFlash\FlashUrlCompatibilityList} #>

There are tons of configuration items you can configure that way. If you know how to do it it seems like a straightforward process.

Cheers,
Sinisa

By:

Posted in: