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

  1. @echo off
  2. attrib -h -r -s system.dat
  3. attrib -h -r -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. if exist system.dak copy system.dak system.dat /v /y > null
  7. if exist user.dak copy user.dak user.dat /v /y > null
  8. attrib +h +s +r system.dat
  9. attrib +h +s +r user.dat
  10. if exist system.dak attrib +h +s +r system.dak
  11. if exist user.dak attrib +h +s +r user.dak
  12.