home *** CD-ROM | disk | FTP | other *** search
/ PC Direkt 1998 #11 / PCDIREKT_1198.bin / data / Util / Backup2 / RESTORE.BAT < prev    next >
Encoding:
DOS Batch File  |  1998-08-30  |  1.9 KB  |  101 lines

  1. @echo off
  2.  
  3.  
  4.  
  5.  
  6. :dowindir
  7. set direct=%windir%
  8. if "%direct%"=="" goto nowindir
  9.  
  10. :begin
  11. cls
  12. @echo  Press the key corrisponding to the file you wish to restore
  13. @echo A. Win.ini file
  14. @echo B. System.ini 
  15. @echo C. Autoexec.bat
  16. @echo D. Config.sys
  17. @echo E. System reg files  - Only in Dos Mode
  18. @echo F. Restore all files - Only in Dos Mode
  19. @echo G. Exit Restore
  20. @echo off
  21. choice /c:ABCDEFG Press the appropriate key
  22. if errorlevel 7 goto end
  23. if errorlevel 6 goto all
  24. if errorlevel 5 goto reg
  25. if errorlevel 4 goto config
  26. if errorlevel 3 goto auto
  27. if errorlevel 2 goto sys
  28. if errorlevel 1 goto win
  29.  
  30. :win
  31. copy win.ini %direct%/y
  32. @echo File Win.ini copied to %direct%
  33. pause
  34. goto begin
  35.  
  36. :sys
  37. copy system.ini %direct%/y
  38. @echo File System.ini copied to %direct%
  39. pause
  40. goto begin
  41.  
  42.  
  43. :auto
  44. copy autoexec.bat c:\
  45. @echo File Autoexec.bat copied to C:\
  46. pause
  47. goto begin
  48.  
  49.  
  50.  
  51. :config
  52. copy config.sys c:\
  53. @echo File Config.sys copied to C:\
  54. pause
  55. goto begin
  56.  
  57.  
  58. :reg
  59.         
  60. attrib -a -h -r -s %direct%\system.dat
  61. attrib -a -h -r -s %direct%\user.dat
  62. attrib -a -h -r -s system.dat
  63. attrib -a -h -r -s user.dat
  64. rename %direct%\system.dat system.bak
  65. rename %direct%\user.dat user.bak
  66. copy system.dat %direct%/y
  67. copy user.dat  %direct%/y
  68. attrib +a +h +r +s %direct%\system.dat
  69. attrib +a +h +r +s %direct%\user.dat
  70. del %direct%\*.bak
  71. @echo Files Systen and User.dat copied to %direct%
  72. pause
  73. goto begin
  74.  
  75. :all
  76. copy win.ini %direct%/y
  77. copy system.ini %direct%/y
  78. copy autoexec.bat c:\
  79. copy config.sys c:\
  80. attrib -a -h -r -s %direct%\system.dat
  81. attrib -a -h -r -s %direct%\user.dat
  82. attrib -a -h -r -s system.dat
  83. attrib -a -h -r -s user.dat
  84. rename %direct%\system.dat system.bak
  85. rename %direct%\user.dat user.bak
  86. copy system.dat %direct%/y
  87. copy user.dat  %direct%/y
  88. attrib +a +h +r +s %direct%\system.dat
  89. attrib +a +h +r +s %direct%\user.dat
  90. del %direct%\*.bak
  91.  
  92. @echo All files copied
  93. :nowindir
  94.  
  95.  type restore.txt |more
  96.  
  97.  
  98. :end
  99. exit
  100.  
  101.