dos

  • Thread starter Thread starter SnIpA
  • Start date Start date
SnIpA said:
yes but in ftp you need to login i mean without login in to the host

Not necessarily.
What is it you are trying to accomplish?
Where you are getting the file will determine what command line options (if
any that would be built into Windows XP exist) you would use.
 
SnIpA said:
yes but in ftp you need to login i mean without login in to the host

Well you can't not login to the host if the host requires it. The owner of
the server sets the rules, not random passing visitors! The server also
needs to support FTP or another method of downloading files via the command
line. I'm gonna assume it does FTP for now.

Try using the FTP command with the -s parameter, which allows you to specify
a set of commands for the FTP command to process, something like the
following to download "textfile.exe" from ftp.example.com with the username
"username" and the password "password".



FTP -s:RobsCommands.txt

The file "RobsCommands.txt" might contain the following:

open ftp.example.com
username
password
binary
get testfile.exe
quit

see http://support.microsoft.com/?kbid=96269 for more info


--
 
Back
Top