home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 Secrets (4th Edition) / Windows95Secrets4thEdition.iso / registry / regback.bat < prev    next >
DOS Batch File  |  1995-01-04  |  327b  |  13 lines

  1. @echo off
  2. attrib -h -s system.dat
  3. attrib -h -s user.dat
  4. if exist system.dak attrib -h -r -s system.dak
  5. if exist user.dak attrib -h -r -s user.dak
  6. copy system.dat system.dak /v /y > null
  7. copy user.dat user.dak /v /y > null
  8. attrib +h +s system.dat
  9. attrib +h +s user.dat
  10. attrib +h +r system.dak
  11. attrib +h +r user.dak
  12.  
  13.