Backup Outlook 2016 settings script

Backup Outlook 2016 settings script

Ever have Outlook 2016 perfectly configured and setup and then have something go wrong and either have to uninstall and reinstall and do everything all over again? Or say your hard drive died and you have to reinstall everything. So I’m thinking, theres got to be a way to backup Outlook 2016 settings so I dug into the registry and found the root key to do this. Below I wrote a .cmd file that is a Backup Outlook 2016 settings script and all you have to do is simply copy the syntax into a .cmd file via notepad and run it.

@ECHO OFF
ECHO This will export your Outlook 2016 settings and save them as Outlook-config.reg in your Documents folder of the user that you are logged on as.
REG EXPORT "HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Outlook" "%USERPROFILE%\Documents\Outlook-config.reg" /y
pause

NOTE: If you have your profiles mapped to different drivew this may not work without specifying the absolute path instead of %USERPROFILE%

Posted in Uncategorized and tagged .

8 Comments

    • It should, but you would have to update the version number accordingly within the script. You can run regedit.exe and browse towards that location to determine what the version number and full path is.

  1. Does it backup only the email account settings or all other email configuration settings as well?
    What I am looking is to back up besides email account configuration setting outlook settings, for example all email signatures, contact & calendar formats, etc…

    • From what I remember, yes but it’s been a few years since I did this. Go ahead and try migrating to a secondary machine with it and if you are using IMAP or exchange then you should be fine.

Leave a Reply to Bradley Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.