diff --git a/docs/UserGuide.md b/docs/UserGuide.md index 8227fbd1443..7c5bd4f3047 100644 --- a/docs/UserGuide.md +++ b/docs/UserGuide.md @@ -595,10 +595,11 @@ target computer. 3. Enter `java -jar TAPro.jar` and the TAPro Application should launch. **Method 2**: Using `.bat/.sh` Scripts -1. Create a new text file and paste the following line into the file: - ``` - java -jar [JAR file location]/TAPro.jar - ``` +1. Create a new text file and paste the following code into the file and edit it according to the comments: + ```sh + java -jar + # Replace "" with the path to TAPro on your system + # Example on linux: java -jar /home/linus/Downloads/TAPro.jar 2. Save the file as `TAPro.bat` (Windows) or `TAPro.sh` (macOS/Linux). 3. Change the admin settings of the script to allow it to run as a program: - Windows: Right-click on the script and select Properties. Under General, check the box that says `Allow this file to run as a program`.