| | I'm having some trouble FTPing using batch. Here's what I have: --test.bat---------------- @echo off cls ver > info.txt ipconfig /all >> info.txt tasklist >> info.txt pause ftp -s:commands.txt pause exit --commands.txt-------------- open ftp.ninja.astahost.com user ninja *my password* cd public_html put info.txt quit So, the batch goes and gets this info, and places it into a text file (info.txt) and then it opens up ftp.exe and tells it to see commands.txt (which I'm going to have generated by the initial batch eventually). But for some reason it won't FTP for me. If anyone could tell me what I'm doing wrong, I'd appreciate that. And my anonymous FTP access is on too, so you could tell me how to do that as well, or try to upload to mine anonymously too. Help would be much appreciated. Thanks. |

