Server licence users: There is another way of using command line arguments - as a part of a customization. Please refer to this topic for more information.
Command Prompt method
- Download ISL Light Client to a directory on your hard drive (we will use C:\isltmp for this example).
- Click Start - Run.
- Enter either cmd (Windows 2000 or newer) or command (Windows Me or older) and press enter.
- Navigate to the directory where you saved ISL Light Client executable:
cd c:\isltmp
- Start ISL Light with the desired command line arguments, e.g.:
ISLLightClient.exe --on-load "main?pos=righttop&sticky"
Windows Shortcut method
- Download ISL Light Client to a directory on your hard drive (we will use c:\isltmp for this example).
- Right-click on your desktop, select New and then Shortcut.
- Select the location of the ISL Light Client executable - for this example, it is c:\isltmp\ISLLightClient.exe
- Click Next.
- You can change the name of the shortcut if you wish and then press Finish.
- Edit shortcut properties - right-click on the shortcut you created and select Properties.
- Append the desired command line arguments in the Target field and click OK.
- You can run the program by double-clicking the shortcut.
Example of how the Target field in Properties for ISL Light shortcut should look like:
"C:\isltmp\ISLLightClient.exe" --on-load "main?pos=righttop&sticky"
URL method
The usual way to start ISL Light Desk is to use the following link:
http://www.islonline.net/start/ISLLightClient
Server licence users: You should use the following link: http://localhost:7615/start/ISLLightClient
To add command line arguments, append ?cmdline= to the link and then specify the desired arguments. These arguments need to be URL encoded - you can use our URL encoding page: click here.
Step-by-step example:
- Let us say we want to use the following command line arguments for ISL Light Client:
--on-load "main?pos=righttop&sticky" --on-connect "desktop?show"
- Copy and paste the command line arguments into our URL encoding page and click URL Encode. Copy and paste the result (URL encoded text):
--on-load+%22main%3Fpos%3Drighttop%26sticky%22+--on-connect+%22desktop%3Fshow%22
- Append the URL encoded text to the original link, together with the ?cmdline= parameter, and you will have created a working link:
http://www.islonline.net/start/ISLLightClient?cmdline=--on-load+%22main%3Fpos%3Drighttop%26sticky%22+--on-connect+%22desktop%3Fshow%22
Server licence users: Your link will look like this: http://localhost:7615/start/ISLLightClient?cmdline=--on-load+%22main%3Fpos%3Drighttop%26sticky%22+--on-connect+%22desktop%3Fshow%22
If you use a more advanced link to start ISL Light Client, e.g. http://www.islonline.net/start/ISLLightClient?platform=win32, the procedure is a bit different, since this link already includes parameters (parameters start after the ? sign). You need to use &cmdline= instead of ?cmdline= and then follow it with the URL encoded command line arguments, like in this example:
http://www.islonline.net/start/ISLLightClient?platform=win32&cmdline=--on-load+%22main%3Fpos%3Drighttop%26sticky%22+--on-connect+%22desktop%3Fshow%22
Server licence users: Your link will look like this: http://localhost:7615/start/ISLLightClient?platform=win32&cmdline=--on-load+%22main%3Fpos%3Drighttop%26sticky%22+--on-connect+%22desktop%3Fshow%22