Reset Preview in Visual Studio 2008?

For some reason, the layout and sizes of the various panels in my copy of Visual Studio 2008 have gone awry - for example, windows Error

and are Output

displayed in the same tab group as my code and their position is not saved if I try to manually move them there. where I want them to go. Is there any way to reset all panels to their default state?

+2


source to share


1 answer


I suppose this will reset your settings to their factory state:

devenv.exe /resetsettings

      

In the future, you may need to export your settings (after getting them where you want) using the "Tools / Import and Export ..." wizard in Visual Studio.



If you reset in the future, you can either use the wizard or use the command

devenv /resetsettings {SettingsFile}

      

Where {SettingsFile} is your previously exported settings

+5


source







All Articles