home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Database / X!-V330.LHA / VCArchive / tools / Restore < prev    next >
Encoding:
Text File  |  1996-02-21  |  1.4 KB  |  75 lines

  1. ;
  2. ;
  3. ; This is an example for an automatic restore procedure for Untitled III.
  4. ; The Ordner files will be decompressed by FUnCopy. 
  5. ; To compress them, use FUnCopy with the option C.
  6. ;
  7. ; Usage: FUnCopy source destination option
  8. ;
  9. ; You may want to modify this file, if you intend to use it. The use of
  10. ; FUnCopy instead of Lha can speed up the compression on older Amigas.
  11. ;
  12. ;
  13. ; USE AT YOUR OWN RISK
  14. ;
  15. ;
  16. ; Copyright by Harald Zottmann - Version 1.0 - 14.02.1996
  17. ;
  18.  
  19.  
  20.  
  21. ;
  22. ; Request first disk
  23. ;
  24.  
  25. Echo "*E[0;0H*E[J"
  26. Echo "Untitled III Restore Procedure"
  27. Echo "Copyright by Harald Zottmann"
  28. Echo "USE AT YOUR OWN RISK"
  29. Requester Continue Abort "Untitled III Restore Procedure" "Welcome to the Untitled III" "Restore Procedure" "Insert the first disk in drive df0:"
  30. If ERROR
  31. EndCLI
  32. Quit 0 
  33. EndIf
  34. Echo "*E[0;0H*E[J"
  35.  
  36. Echo "Restoring MC_Ordner_1 from df0:"
  37. FUnCopy df0:MC_Ordner_1 /MC_Ordner_1 D
  38. Echo ""
  39.  
  40.  
  41.  
  42. ;
  43. ; Request second disk
  44. ;
  45.  
  46. Echo "*E[0;0H*E[J"
  47. Requester Continue Abort "Untitled III Restore Procedure" "Insert the second disk in drive df0:" "or select <Continue> to proceed."
  48. If ERROR
  49. EndCLI
  50. Quit 0 
  51. EndIf
  52. Echo "*E[0;0H*E[J"
  53.  
  54. Echo "Restoring CD_Ordner_1 from df0:"
  55. FUnCopy df0:CD_Ordner_1 /CD_Ordner_1 D
  56. Echo ""
  57.  
  58. Echo "Restoring Phono_Ordner_1 from df0:"
  59. FUnCopy df0:Phono_Ordner_1 /Phono_Ordner_1 D
  60. Echo ""
  61.  
  62. Echo "Restoring Video_Ordner_1 from df0:"
  63. FUnCopy df0:Video_Ordner_1 /Video_Ordner_1 D
  64. Echo ""
  65. Echo ""
  66.  
  67. Echo "Done !"
  68. Echo ""
  69.  
  70.  
  71.  
  72. ;
  73. ; That`s it 
  74. ;
  75.