Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why doesn't VS 2008 IDE remember my preferences?

This is a very petty question that I'm only asking while compiling... ;)

For some reason my VS 2008 IDE doesn't remember my window preferences when I close & reopen - it resets the window widths, locations, appearances etc.

Where's the secret switch so that my IDE stays looking the way I want it?

like image 250
Shaul Behr Avatar asked Mar 01 '23 13:03

Shaul Behr


2 Answers

The window positions are stored in the following file:

%APPDATA%\Application Data\Microsoft\VisualStudio\9.0\windows.prf

I'm guessing that you don't have write access to this file, or something.

Anyway if you can somehow delete this file, it will regenerate it when you next start up your VS, with the windows in their default positions.

like image 115
demoncodemonkey Avatar answered Mar 07 '23 10:03

demoncodemonkey


Try resetting the Visual Studio

Tools->Import and Export Settings->Reset All Settings

Or

devenv.exe /resetsettings
like image 40
Ranjith Avatar answered Mar 07 '23 11:03

Ranjith