home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD 45 / SuperCD45.iso / talleres / vayuda / helpscrn / script / backup.scr next >
Text File  |  2000-05-27  |  2KB  |  45 lines

  1. ; This script drives a Microsoft Backup (Win 98 version written by Seagate) session.
  2. ; Assumes pre-existing backup job called Test. To use it with your own backup job,
  3. ; use search and replace to change all instances of Test to whatever name you want.
  4. ; NOTE - no error checking in this. Assumes a perfect run.
  5. ; by Ian Sharpe, PC Plus magazine
  6.  
  7. ; Run msbackup.exe, maximised, in its home start-up directory. Note need to put \\ instead of \
  8. start,C:\\Program Files\\Accessories\\BACKUP\\MSBACKUP.EXE,max,C:\\Program Files\\accessories\\backup\\system
  9.  
  10. ; Wait for the window to appear
  11. wait,Microsoft Backup
  12.  
  13. ; Send to window 'Microsoft Backup [Alt][O] followed by Return (\n)
  14. ; ...opts to open an existing backup job and then press [Return] key
  15. send,Microsoft Backup,%o\n
  16.  
  17. ; Wait for the next dialog to open
  18. wait,Open Backup Job
  19.  
  20. ; Send to it [Alt][J] then "Test", then [Return]
  21. send,Open Backup Job,%jTest\n
  22.  
  23. ; Wait for main Window headed 'Microsoft Backup - [Test]'
  24. wait,Microsoft Backup - [Test]
  25.  
  26. ; Start the backup job with [Alt][S]
  27. send,Microsoft Backup - [Test],%s
  28.  
  29. ; Wait for the next dialog to open
  30. wait,Backup Progress - Test
  31.  
  32. ; Wait for next dialog, which reports success and contains an OK button
  33. ; '\n' sends [Return] to close dialog
  34. wait, Microsoft Backup
  35. send,Microsoft Backup,\n
  36.  
  37. ; OK next dialog too
  38. wait,Backup Progress - Test
  39. send,Backup Progress - Test,\n
  40.  
  41. ; Back to main Window... send [Alt][J] [X] to exit program
  42. wait,Microsoft Backup - [Test]
  43. send,Microsoft Backup - [Test],%jx
  44.  
  45.