home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem Use this batch file if Windows 95 starts in Fail-Safe mode to change
- rem the system.dat and user.dat files to the last good versions of these files.
- rem Copies system.da0 over system.dat and user.da0 over user.dat
- attrib -h -r -s system.da0
- attrib -h -r -s user.da0
- attrib -h -r -s system.dat
- attrib -h -r -s user.dat
- copy system.da0 system.dat /v /y > null
- copy user.da0 user.dat /v /y > null
- attrib +h +s +r system.dat
- attrib +h +s +r user.dat
- attrib +h +s +r system.da0
- attrib +h +s +r user.da0
-