Guest User

Untitled

a guest
Aug 31st, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.52 KB | None | 0 0
  1. REM Start the ftp
  2. C:\> ftp
  3. REM Connect to the server
  4. ftp> open releases.mozilla.org
  5. REM When asked for username:
  6. REM username: Anonymous
  7. REM password: your email address
  8. REM then you cd-ls to the right directory or type
  9. ftp> cd pub/mozilla.org/firefox/releases/latest/win32/en-US
  10. REM there you'll find the latest version
  11. REM type ls to see the full name of the .exe file
  12. ftp> ls
  13. REM switch to binary mode
  14. ftp> binary
  15. REM start the download
  16. ftp> get "Firefox Setup 13.0.1.exe"
  17. REM Wait for the download and you are done
Add Comment
Please, Sign In to add comment