Hello Experts,
I need your help,
I have two Scripts i use to retrieve and deposit files into our ftp. the scripts work like a champ in XP but now i must update to windows 7 and they no longer work. it gives an "Access File Denied" error.
Here are the scripts i use. What do i need to modify in the scripts or Windows 7 security to allow me to use it.
Thank you in advance.
Wilson J
Receive Update
echo off
del c:\
ftp.txt
echo username>> c:\
ftp.txt
echo password>> c:\
ftp.txt
echo prompt off >> c:\
ftp.txt
echo lcd "c:\RIFolder\" >> c:\
ftp.txt
echo get "SFolder\RIFolder\filename
.XLT" >> c:\
ftp.txt
echo get "SFolder\RIFolder\\filenam
e.txt" >> c:\
ftp.txt
echo bye >> c:\
ftp.txt
ftp -s:c:\
ftp.txt ftp.domainname.com
del c:\
ftp.txt
Send Update
echo off
del c:\
ftp.txt
echo username>> c:\
ftp.txt
echo password>> c:\
ftp.txt
echo prompt off >> c:\
ftp.txt
echo mput "c:\RIFolder\import\*.csv"
>> c:\
ftp.txt
echo bye >> c:\
ftp.txt
ftp -s:c:\
ftp.txt ftp.domainname.com
del c:\
ftp.txt
echo off
echo off
cd "c:\RI\import"
move /y *.csv "c:\RIFolder\import\backup
\"