Now the computer in my unit is a Lenovo with Huidun protection. Data cannot be saved on the C drive. Therefore, the installations and configuration files of Mozilla Firefox and Thunderbird cannot be saved. Also, many programs need to put things in "C:\Documents and Settings", and the folder location cannot be moved, which is really troublesome. Recently, this is how I save and back up. Once when the restore card was unlocked, I edited the "Path" variable in the properties of "My Computer", put the path of winrar in it, and then wrote a file to save settings:
mkbksd.bat
@rar a -u -as -ep3 -r e:\hj\backup\bk\bkfxsd.rar "C:\Documents and Settings\Administrator\Application Data\Mozilla"
@rar a -u -as -ep3 -r e:\hj\backup\bk\bkbirdsd.rar "C:\Documents and Settings\Administrator\Application Data\Thunderbird"
Restore settings
restore.bat
e:
@cd "e:\hj\backup\bk"
REM Try to restore with the shutdown backup file
@rar x -ep3 -o+ bkfxsd.rar
@rar x -ep3 -o+ bkbirdsd.rar
I think if the content of Path cannot be modified, the absolute path of rar can also be put in the script. It can be used simply. Of course, it cannot be compared with the great work of the building owner. Just I want to say that I also had the plan to write such a script, and now it is labor-saving and happy.
mkbksd.bat
@rar a -u -as -ep3 -r e:\hj\backup\bk\bkfxsd.rar "C:\Documents and Settings\Administrator\Application Data\Mozilla"
@rar a -u -as -ep3 -r e:\hj\backup\bk\bkbirdsd.rar "C:\Documents and Settings\Administrator\Application Data\Thunderbird"
Restore settings
restore.bat
e:
@cd "e:\hj\backup\bk"
REM Try to restore with the shutdown backup file
@rar x -ep3 -o+ bkfxsd.rar
@rar x -ep3 -o+ bkbirdsd.rar
I think if the content of Path cannot be modified, the absolute path of rar can also be put in the script. It can be used simply. Of course, it cannot be compared with the great work of the building owner. Just I want to say that I also had the plan to write such a script, and now it is labor-saving and happy.

DigestI