this bat file. The purpose of the bat file is to download xml documents
from a remote server. The executable runs fine on its own, but won't run
when called from MacroSheduler. The .bat and .ftp (script) files are
created and the .bat file seems to be executing, but nothing is
downloaded from the ftp server. Below is the code in all of the files. I
removed specifics for security reasons.
This works fine when not used through MacroScheduler. Has anyone else
had a problem like this?
Code: Select all
>send.bat
@echo off
\\server\share
ftp -i -s:send.ftp - xxxxxxxxxx.xxx.xxx.com <--Proxy Server
@cls
>send.ftp
username <--proxy user
password <--proxy pwd
user [email protected] ftppassword
cd /-----/--/--/ <--drop folder
mget *.xml
mget *.XML
mdelete *.xml
mdelete *.XML
quit