Trying to batch run a command
- FlowHeater-Team
- Topic Author
- Offline
- Admin
Less
More
10 years 9 months ago #2315
by FlowHeater-Team
Best wishes
Robert Stark
Trying to batch run a command - Post(2315) was created by FlowHeater-Team
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
I’ve also tried:
Neither seem to work, I will admit I’m new to command lines
Bryan Greenway
Request received via E-Mail
I’m trying to batch run a command “Excel-to-Multi-Brand.fhd”
With the following
Code:
@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:
Code:
@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
Please Log in or Create an account to join the conversation.
- FlowHeater-Team
- Topic Author
- Offline
- Admin
10 years 9 months ago #2316
by FlowHeater-Team
Best wishes
Robert Stark
Replied by FlowHeater-Team on topic Trying to batch run a command - Post(2316)
Hi Bryan,
This is related to the spaces in your path definition. Please try the following Batch CMD command script.
This is related to the spaces in your path definition. Please try the following Batch CMD command script.
Code:
@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
Please Log in or Create an account to join the conversation.
Time to create page: 0.250 seconds