Citrix StoreFront

UI Experience

Important:

From StoreFront 2311 to 2407, the modern experience is available as a tech preview and should not be used in production. From StoreFront 2411 it is generally available.

On the UI experience tab, you can choose a UI experience for your end-users. You can choose between:

  • Unified experience. Select this for the classic (unified) experience. For more information, see Classic experience.

  • Next generation experience. Select this for the modern experience. For more information, see Modern experience.

Screenshot of UI experience tab

If you use a Citrix Gateway for remote access, you can choose a theme to match the selected experience. For more information, see NetScaler documentation.

PowerShell

To get the UI experience using PowerShell, call cmdlet Get-STFWebReceiverService and view the WebReceiver.WebUIExperience property.

For example:

(Get-STFWebReceiverService -VirtualPath "/Citrix/StoreWeb").WebReceiver.WebUIExperience
<!--NeedCopy-->

WebUIExperience takes the following values:

  • ReceiverForWeb - Classic (unified) experience
  • Workspace - Modern experience

To change the UI experience using PowerShell, call cmdlet Set-STFWebReceiverService with parameter WebUIExperience.

For example to use the classic experience:

$rfw=Get-STFWebReceiverService -VirtualPath "/Citrix/StoreWeb"
Set-STFWebReceiverService -WebReceiverService $rfw -WebUIExperience Workspace
<!--NeedCopy-->
UI Experience