You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
456 B
14 lines
456 B
9 years ago
|
@echo off
|
||
|
|
||
|
echo "Start Exporting Pre State"
|
||
|
regedit.exe /e "%USERPROFILE%\Desktop\pre_hklm.reg" "HKEY_LOCAL_MACHINE"
|
||
|
regedit.exe /e "%USERPROFILE%\Desktop\pre_hkcu.reg" "HKEY_CURRENT_USER"
|
||
|
echo "Done Exporting Pre State"
|
||
|
|
||
|
pause
|
||
|
|
||
|
echo "Start Exporting Post State"
|
||
|
regedit.exe /e "%USERPROFILE%\Desktop\post_hklm.reg" "HKEY_LOCAL_MACHINE"
|
||
|
regedit.exe /e "%USERPROFILE%\Desktop\post_hkcu.reg" "HKEY_CURRENT_USER"
|
||
9 years ago
|
echo "Done Exporting Post State"
|