From 47c14b0fd0f84162917059c2193242e54d6712f8 Mon Sep 17 00:00:00 2001 From: Alex Hirsch Date: Thu, 6 Aug 2015 22:01:20 +0200 Subject: [PATCH] add pre_post_export batch file --- utils/pre_post_export.bat | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 utils/pre_post_export.bat diff --git a/utils/pre_post_export.bat b/utils/pre_post_export.bat new file mode 100644 index 0000000..eb1d094 --- /dev/null +++ b/utils/pre_post_export.bat @@ -0,0 +1,13 @@ +@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" +echo "Done Exporting Post State" \ No newline at end of file