Error coming in bat file

shafee212

Member
I am trying to execute a partcular bat file

SET DLC=C:\dlc91e;C:\dlc91e\bin
SET PATH=%PATH%;%DLC%;%DLC%\bin
C:
cd c:\dlc91e\bin
_mprosrv.exe c:\progress\wrk\proj.db
start prowin32.exe -ininame c:\MySettings.ini -p c:\progress\wrk\xxlogin.p -db c:\progress\wrk\proj.db
it gives error after starting the database .
it gives error that DLC variable must contain a valid path .

if i remove "-ininame c:\MySettings.ini " part , it works .
 

RealHeavyDude

Well-Known Member
The DLC environment variable may not contain two directories.

It is not good practice to cd into the bin directory of you Progress installation because that's where all the temporary files will go unless otherwise specified.

You should check the ini file you're using. Most likely it will contain a definition for the DLC environment variable that is invalid.

Plus is there any particular reason why you use _mprosrv.exe instead of the proserve script?


Heavy Regards, RealHeavyDude.
 
Top