Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
batch file not working
Name: kingkhan Date: January 31, 2008 at 04:19:46 Pacific OS: xp CPU/Ram: 512 mb Product: p4
Comment:
i am trying to automate ftp process. but neither am able to upload nor download,here is the script @echo off cd E:\docs\ >ftpcmd.dat echo ftp 192.18.16.40 >>ftpcmd.dat echo User (192.18.16.40:(none)):root >>ftpcmd.dat echo Password:kiss1234 >>ftpcmd.dat echo prompt off >>ftpcmd.dat echo get *.txt >>ftpcmd.dat echo bye ftp -s :ftpcmd.dat after execution of the .bat file am getting ftpcmd.dat file with contents as follows ftp 192.18.16.40 User (192.18.16.40:(none)):root Password:kiss1234 prompt off get *.txt bye
wher on / of 192.18.16.40 i have several txt files but am not getting any of those4.plz help to sort out. Thanks in advance for help
Summary: I run batch files on 19 different computers from the scheduled tasks. Each one is set up with the same permissions and types of users. Only one will not run the scheduled task properly. It will run...
Summary: I am attempting to write a batch file that would allow me to open approx 5 executable processes at the same time. I was able to get Outlook.exe and Iexplore.exe working fine. I am having issues with...
Summary: Hello! I've made a batch file, it works fine on my windows XP computer, but it's not working on my Windows Server 2003 computer, the 'Ping' command on it isn't working. Here is it: @echo off Title Res...