Problems with the promsgs file !! Need help

make

Member
Hi there,

i have i mysterious problem. I tried to start some cmd-files(starting some progress procedures) with the "at" Command from a Windows 2000 Server.
When the "at" command starts the batch file, the message " Unable to open promsgs error! " comes.
When i start the batch file manualy , it works fine.
I have set the dlc path ! the same error.

Need help

Greets
Make
 
You also need to set the environment variable PROMSGS

I do the following:

SET DLC=c:\dlc
SET DLCBIN=%DLC%\bin
SET PROMSGS=%DLC%\promsgs
SET TEMP=c:\temp
SET PATH=%DLCBIN%;%DLC%;%PATH%

Originally posted by make
Hi there,

i have i mysterious problem. I tried to start some cmd-files(starting some progress procedures) with the "at" Command from a Windows 2000 Server.
When the "at" command starts the batch file, the message " Unable to open promsgs error! " comes.
When i start the batch file manualy , it works fine.
I have set the dlc path ! the same error.

Need help

Greets
Make
 
Next to the definition of environment variables as described in the previous reply, you also have to take good care what account starts the winat/at-service, since this will be user which in the end executes the cmd file. Often this will be the system-account with its own user rights / env. settings... to check these is always worth a shot.....
icon10.gif
icon10.gif


F. van der Meulen
Progress Developer
Caesar Vitalogic
The Netherlands...

Originally posted by make
Hi there,

i have i mysterious problem. I tried to start some cmd-files(starting some progress procedures) with the "at" Command from a Windows 2000 Server.
When the "at" command starts the batch file, the message " Unable to open promsgs error! " comes.
When i start the batch file manualy , it works fine.
I have set the dlc path ! the same error.

Need help

Greets
Make
 
Back
Top