FTP Uses Port 21 Auto FTP Batch File Example echo user username> ftpcmd.dat echo password>> ftpcmd.dat echo prompt>> ftpcmd.dat echo cd "local directory">> ftpcmd.dat echo lcd "remote directory">>ftpcmd.dat echo mget filename>> ftpcmd.dat echo quit>> ftpcmd.dat ftp -n -s:ftpcmd.dat 192.168.10.5 del ftpcmd.dat DETAILS: Line 1: Creates a file in the current directory titled ftpcmd.dat with user username (replace username with your ftp account name) Line 2: Adds your password to the ftpcmd.dat file (replace password with your ftp account password) Line 3: Turns the Confirmations Prompts Off (Copy File Y N?) Line 4: Changes directories on local machine Line 5: Changes directories on remote machine Line 6: Use get or mget to get a file or multiple files Line 7: Exits the FTP session Line 8: Executes the actual FTP session using the input strings from the ftpcmd.dat file Line 9: Deletes the ftpcmd.dat file