Examples

 

This section will provide a few examples to give you some usage ideas and get you started. It assumes that you use the Command Prompt method - for other methods, please modify accordingly.

 

Start ISL Light Client and automatically connect to a session with the session code 12345678:

ISL_Light_Client.exe --connect 12345678

 

Start ISL Light Client and set the company logo that is stored in http://my-company-name.com/files/company-logo.bmp: 

ISL_Light_Client.exe --on-load "main?logo=http://my-company-name.com/files/company-logo.bmp"

 

Start ISL Light Client and position the main window in the top right corner, 150 pixels away from the right border and 50 pixels away from the top border:

ISL_Light_Client.exe --on-load pos=righttop(150,50)

 

Start ISL Light Client and change the main window position on certain events - on load it is in the top left corner with (150, 50) offset, after establishing a connection with the operator it moves to the bottom right corner with (150, 50) offset, after terminating a session it moves to the bottom left corner with (150, 50) offset:

ISL_Light_Client.exe --on-load pos=lefttop(150,50) --on-connect pos=rightbottom(150,50) --on-disconnect pos=leftbottom(150,50)

 

Start ISL Light Client and open URL https://www.help.islonline.com on load. After establishing a connection, open URL https://www.islonline.com:

ISL_Light_Client.exe --on-load "open_url=https://www.help.islonline.com" --on-connect "open_url=http://www.islonline.com"

 

Start ISL Light Client, start desktop sharing on connect, try to enable the administrative mode and restart and resume functionality. At the same time start ISL Light Desk and automatically begin viewing the remote desktop:

ISL_Light_Client.exe --on-connect "desktop?show&control&admin=restart"
ISL_Light_Desk.exe --on-connect "desktop?view"

 

Start ISL Light Client and start transferring the file C:\Files\transfer_me.txt on connect:

ISL_Light_Client.exe --on-connect "file_transfer?transfer=C:\Files\transfer_me.txt"


Start ISL Light Client and automatically start recording to C:\recordings on connect - the user is unable to stop session recording once it is started:

ISL_Light_Client.exe --on-connect "recording?record=silent&location=C:\Recordings&allow_stop=false"

 

Stop and close the ISL Light Client when desktop sharing is closed:

ISL_Light_Client.exe --on-connect "desktop?events=stream_stop_close"

 

Position ISL Light Client in the bottom right automatically after connection to client:

ISL_Light_Client.exe --on-load pos=rightbottom(150,50)


Automatically create a recording to "C:/ISL/REC" named as the user's username once a connection has been established:

ISL_Light_Client.exe --on-connect "recording?record=silent&name=$[USERNAME]&location=C:\ISL\REC"

Was this article helpful?