[Solved] Configure Citrix Storefront

'User made' tutorials related to Porteus Kiosk edition.
Official kiosk documentation can be find here: http://porteus-kiosk.org/documentation.html
DavidS
White ninja
White ninja
Posts: 5
Joined: 19 Feb 2018, 14:42
Distribution: Kiosk 4.6.0

[Solved] Configure Citrix Storefront

Post#1 by DavidS » 19 Feb 2018, 20:03

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
Last edited by DavidS on 20 Feb 2018, 11:29, edited 1 time in total.

User avatar
fanthom
Moderator Team
Moderator Team
Posts: 5660
Joined: 28 Dec 2010, 02:42
Distribution: Porteus Kiosk
Location: Poland
Contact:

Configure Citrix Storefront

Post#2 by fanthom » 20 Feb 2018, 07:14

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
Please add [Solved] to your thread title if the solution was found.

DavidS
White ninja
White ninja
Posts: 5
Joined: 19 Feb 2018, 14:42
Distribution: Kiosk 4.6.0

Configure Citrix Storefront

Post#3 by DavidS » 20 Feb 2018, 11:28

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.

Post Reply