home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Windows 95 Secrets (4th Edition)
/
Windows95Secrets4thEdition.iso
/
registry
/
regback.bat
< prev
next >
Wrap
DOS Batch File
|
1995-01-04
|
327b
|
13 lines
@echo off
attrib -h -s system.dat
attrib -h -s user.dat
if exist system.dak attrib -h -r -s system.dak
if exist user.dak attrib -h -r -s user.dak
copy system.dat system.dak /v /y > null
copy user.dat user.dak /v /y > null
attrib +h +s system.dat
attrib +h +s user.dat
attrib +h +r system.dak
attrib +h +r user.dak