Batch File Not Running: Difference between revisions

From Tuflow
Jump to navigation Jump to search
Content deleted Content added
No edit summary
No edit summary
 
Line 18: Line 18:
<tt>set TUFLOWEXE=C:\TUFLOW\Releases\2017-09-AC\w64\TUFLOW_iSP_w64.exe</tt>
<tt>set TUFLOWEXE=C:\TUFLOW\Releases\2017-09-AC\w64\TUFLOW_iSP_w64.exe</tt>
|}
|}


{{Tips Navigation
|uplink=[[Tutorial_Module06_Archive| Back to Tutorial Module06 Archive]]
}}

Latest revision as of 11:34, 8 January 2026

Description

When running TUFLOW with a batch file and setting the TUFLOW executable path or other commands as variable, the console window produces an error message and no simulations are executed (as shown below).

Suggestions

Check the path to the TUFLOW executable have been entered correctly. If it has, the error is most likely caused by using a " "(space) before and/or after the "=" in the batch file after the set variable command
For example (incorrect format):

set TUFLOWEXE = C:\TUFLOW\Releases\2017-09-AC\w64\TUFLOW_iSP_w64.exe

To solve this issue, please remove the " "(space) next to the "=".
For example (correct format):

set TUFLOWEXE=C:\TUFLOW\Releases\2017-09-AC\w64\TUFLOW_iSP_w64.exe


Up
Back to Tutorial Module06 Archive