-
FlowHeater-Team
-
Topic Author
-
Offline
-
Posts: 391
-
-
-
-
|
Hello, could you possibly help me with the following batch command?
I’m trying to batch run a command “Excel-to-Multi-Brand.fhd”
With the following
@echo off
FHBatch.exe /MaxRows 10000 C:\Users\bgreenway\Google Drive\Product Data\Excel-to-Multi-Brand.fhd
if %ERRORLEVEL% LSS 0 goto error
echo OK
goto end
:error
echo error
:end
I’ve also tried:
@echo off
REM adapt the following to the actual path of FHBatch.exe
set FHBATCH=""C:\Program Files (x86)\FlowHeater V3\BIN\FlowHeater.exe"
%FHBATCH% Excel-to-Multi-Brand.fhd
Neither seem to work, I will admit I’m new to command lines
Bryan Greenway
Request received via E-Mail
Best wishes
Robert Stark
Did this answer your question? We would be grateful if you provide a brief comment as feedback. It may also help others who may have encountered a similar problem.
|
Please Log in or Create an account to join the conversation.
|
-
FlowHeater-Team
-
Topic Author
-
Offline
-
Posts: 391
-
-
-
-
|
Hi Bryan,
This is related to the spaces in your path definition. Please try the following Batch CMD command script.
@echo off
REM adapt the following to the actual path of FHBatch.exe
set FHBATCH="C:\Program Files (x86)\FlowHeater V3\BIN\FlowHeater.exe"
%FHBATCH% "C:\Users\bgreenway\Google Drive\Product Data\Excel-to-Multi-Brand.fhd"
if %ERRORLEVEL% LSS 0 goto error
echo OK
goto end
:error
echo error
:end
Best wishes
Robert Stark
Did this answer your question? We would be grateful if you provide a brief comment as feedback. It may also help others who may have encountered a similar problem.
|
Please Log in or Create an account to join the conversation.
|
Time to create page: 0.078 seconds