views:

692

answers:

2

I export my settings in Visual Studio and if I ever move to a new machine or have problems, I use those backed up settings to restore Visual Studio to the way I like it. It also allows me to maintain a consistent development environment between the various machines that I use.

This works great for keybindings, syntax highlighting, user tools, pretty much everything except for the toolbar locations and customizations. Whenever I move to a new machine and restore the settings, the toolbars are not affected. I have spent a fair amount of time setting up toolbars with my macros, external tools, etc and cut'n'pasted icons in for them. I hate losing all that work.

Does anybody know how to back up and restore the toolbars' locations and customizations? If it is not a feature of Visual Studio, is there an addin that will do the job?

Edit

As mentioned below, the Menu and Command Bar Customizations in Import and Export Settings is supposed to do this, but when I re-import my previous settings, I get

Error 1: Menu and Command Bar Customizations: The version of command bar settings being imported is not supported. All the command bar settings have been ignored.

The settings I am trying to re-import were exported earlier this month with the same version of Visual Studio. The only difference is that I am now running 64 bit as opposed to x86. I didn't think that would make a difference though since the settings files are XML.

Any ideas?

+1  A: 

I have not tried it, but "Tools\Import and Export Settings..." maybe will let you export a .vssettings file you can then take to another box.

See also

http://blogs.msdn.com/saraford/archive/2005/04/19/409887.aspx

and other Sara 'export' tips.

Brian
Make sure you have "Menu and Command Bar Customisation" ticked. It works for me (at least with a custom made toolbar).
Robert Wagner
+6  A: 

I have finally found the solution to this. There is a known bug in Visual Studio and there are two workarounds given. The first workaround does not apply, but the second worked.

To Backup your toolbars;

copy the %APPDATA%\Microsoft\VisualStudio\8.0\1033\cmdui.prf or %APPDATA%\Microsoft\VisualStudio\9.0\1033\cmdui.prf file to the same directory as your exported .settings file.

To Restore your toolbars;

Make sure Visual Studio is closed and copy the backed up file back to the original location.

Rob Prouse