home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1999 April / CD_Shareware_Magazine_31.iso / WIN95 / INTERNET / ftpctrl3b8.exe / %MAINDIR% / Scripts / ftpupgrade.ftp < prev   
Encoding:
Text File  |  1999-02-07  |  694 b   |  31 lines

  1. ; Name: FTPUpgrade.ftp
  2. ; Task: Automatically upgrades your copy of FTP Control
  3. ;       Simply execute this script and you will be retrieving
  4. ;       the latest version of FTP Control.
  5. ; ------
  6. Host="ftp.transsoft.com"
  7. Port="21"
  8. User="anonymous"
  9. Password="ftp@transsoft.com"
  10. Timeout=60
  11. ; ------
  12. ; *******  Connect to FTP host...
  13. connect
  14. ; ------
  15. ; *******  Command sequence...
  16. ; Change remote working directory:
  17. Remote-CD "pub"
  18.  
  19. ; Get the file from the Transsoft's host:
  20. binary 
  21. get "ftpupgr.exe" ".\ftpupgr.exe"
  22.  
  23. ; Execute the file after download
  24. Local-Exec ".\ftpupgr.exe"
  25. ; ------
  26. ; *******  Afterwards, disconnect from host!
  27. disconnect
  28.  
  29. ; ------
  30. ; Script ends!
  31.