Forum rules
Porteus Kiosk section of the forum is unmaintained now. Its kept in a 'read only' mode for archival purposes.
Please use the kiosk contact page for directing your queries:
https://porteus-kiosk.org/contact.html
-
DavidS
- White ninja

- Posts: 5
- Joined: 19 Feb 2018, 14:42
- Distribution: Kiosk 4.6.0
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.
DavidS
-
fanthom
- Moderator Team

- Posts: 5667
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
-
Contact:
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.
fanthom
-
DavidS
- White ninja

- Posts: 5
- Joined: 19 Feb 2018, 14:42
- Distribution: Kiosk 4.6.0
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.
DavidS