home *** CD-ROM | disk | FTP | other *** search
- /*--File Freedom Version Update--*/
- SAY " "
- SAY "If you have File Freedom running, you must shut it down before"
- SAY "continuing with this update!"
- SAY "Make sure that the current directory that contains this update is"
- SAY "not the same as the directory where File Freedom is installed."
- SAY " "
- SAY "To exit this update procedure, type 'X' and then press ENTER."
- SAY "Otherwise, press ENTER to continue."
- PARSE PULL RESPONSE
- X = TRANSLATE(SUBSTR(RESPONSE,1,1))
- IF X = "X" THEN SAY "Update aborted!"
- else do
- SAY " "
- SAY "Enter the full Drive\path where File Freedom is Installed .."
- PARSE PULL PATHNAME
- xcopy filefrdm.exe PATHNAME
- if RC=0 then
- do
- xcopy filefrdm.hlp PATHNAME
- if RC=0 then
- do
- xcopy ffinstal.exe PATHNAME
- xcopy uninstal.exe PATHNAME
- xcopy readme PATHNAME
- xcopy orderfrm PATHNAME
- xcopy BMTMicro.frm PATHNAME
- xcopy Tutorial.doc PATHNAME
- SAY "Updating of File Freedom was Successful!"
- end
- else
- SAY "Update was unsuccessful. Check directory path!"
- end
- else SAY "Update was unsuccessful. Check directory path!"
- end