Run Processes are failing to execute batch files from Filter Run Process

2010-05-18 Thread John Kenny
We are trying to implement a custom solution that involves the execution of a script (batch file) from a filter Run Process. Workflow logging shows the command being executed with no error. However when checking on the results of the script running no action has taken place. It is as if the

Re: Run Processes are failing to execute batch files from Filter Run Process

2010-05-18 Thread LJ LongWing
are failing to execute batch files from Filter Run Process We are trying to implement a custom solution that involves the execution of a script (batch file) from a filter Run Process. Workflow logging shows the command being executed with no error. However when checking on the results

Re: Run Processes are failing to execute batch files from Filter Run Process

2010-05-18 Thread John Kenny
Hello LJ: Thanx for responding. Here is the command for the simple copy test ``C:\TEMP\BulkImport-G14b\Testing\testarsrunprocess.bat`` Here is the script: cd C:\TEMP\BulkImport-G14b\Testing copy SOMTest1.csv SOMTest2.csv I tried using Cmd c/ but same result. The script appears to be executed

Re: {Remedy ARS} Re: Run Processes are failing to execute batch files from Filter Run Process

2010-05-18 Thread jham36
The script may be running, but failing. Try adding a line to the beginning to output something to a log file: echo I ran c:\output.log This will tell you if it was executed. There may be a problem with the cd command. Just a guess. Try switching to the root of c first. cd \ Then cd

Re: Run Processes are failing to execute batch files from Filter Run Process

2010-05-18 Thread Grooms, Frederick W
To: arslist@ARSLIST.ORG Subject: Re: Run Processes are failing to execute batch files from Filter Run Process Hello LJ: Thanx for responding. Here is the command for the simple copy test ``C:\TEMP\BulkImport-G14b\Testing\testarsrunprocess.bat`` Here is the script: cd C:\TEMP\BulkImport-G14b\Testing

Re: {Remedy ARS} Re: Run Processes are failing to execute batch files from Filter Run Process

2010-05-18 Thread LJ LongWing
...@arslist.org] On Behalf Of jham36 Sent: Tuesday, May 18, 2010 3:47 PM To: arslist@ARSLIST.ORG Subject: Re: {Remedy ARS} Re: Run Processes are failing to execute batch files from Filter Run Process The script may be running, but failing. Try adding a line to the beginning to output something

Re: Run Processes are failing to execute batch files from Filter Run Process

2010-05-18 Thread Juan Ingles
Some things to try: Redirect the the output of the command to a file to see any error messages. cd does not change drives. Is Remedy running on a diffecrent drive than c:? Check permissions. The user that runs remedy might not have permissions to the script or the directory. As other people