Page 1 of 1

[Solved] Configure Citrix Storefront

Posted: 19 Feb 2018, 20:03
by DavidS
I added the code from the thin client page to automatically start the Citrix Receiver standalone application. Which works as expected, it launches the Citrix Receiver and prompts the user to "Add Account". But is there a way to configure the Receiver with a URL for the store?

Code: Select all

run_command=while true; do su - guest -c "/opt/Citrix/ICAClient/selfservice --icaroot /opt/Citrix/ICAClient"; done
Citrix has the following code for adding a store. But I couldn't figure out how to make it work in the config.

Code: Select all

./util/storebrowse --addstore 'https://my.secondexamplestore.net/Citrix/Second/discovery'
edited: Solved

Configure Citrix Storefront

Posted: 20 Feb 2018, 07:14
by fanthom
Hi David,

Please try this:

Code: Select all

run_command=su - guest -c "/opt/Citrix/ICAClient/util/storebrowse --addstore https://my.secondexamplestore.net/Citrix/Second/discovery"; while true; do su - guest -c "/opt/Citrix/ICAClient/selfservice --icaroot /opt/Citrix/ICAClient"; done
Thanks

Configure Citrix Storefront

Posted: 20 Feb 2018, 11:28
by DavidS
That worked, thanks, exactly what I needed.

I did add the ' around my store's URL. Not sure if it was needed, but that's how Citrix had indicated.

Thanks again, I really appreciate the help.