StoreFront 1912 LTSR reached end-of-life on 18-Dec-2024. It is recommended that you upgrade to a newer version of StoreFront.

X

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

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

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
UI Experience