home *** CD-ROM | disk | FTP | other *** search
/ Freesoft 1997 May / Freesoft_1997-05_cd.bin / recenz / UTILITY / SYSCFG / BATCH.BAT < prev    next >
DOS Batch File  |  1997-07-03  |  425b  |  25 lines

  1. echo off
  2. cls
  3. echo SystemConfig is now restoring your system registry files
  4. c:
  5. cd c:\windows
  6. echo . . . Changing File Attributes
  7. attrib -h -r -s system.dat
  8. attrib -h -r -s user.dat
  9. echo . . . Replacing Files
  10. copy user.d__ user.dat
  11. copy system.d__ system.dat
  12. attrib -h -r -s system.d__
  13. attrib -h -r -s user.d__
  14. del system.d__
  15. del user.d__
  16. echo SystemConfig will now restart your system
  17. pause
  18. exit
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.