The process of installing, configuring, and customizing Visual Studio to support development workflows across languages, platforms, and workloads.
Hi @Corey Fleig ,
Thank you for the clear information. For your concern, I want to clarify that:
- Visual Studio does not have a fixed global default path for opening projects. "Projects location" setting only affects where new projects are created, not where the Open dialog starts.
- It is true that settings will preserve the last known path for opening projects. However, in your case, the IDE might "sticks" to Desktop for subsequent dialogs.
To fix this, you might need to reset Visual Studio Settings. Please note that the best result of this is that settings will preserve the last known path. Resetting settings will clear customizations so don't forget to export it if needed. Then, you can follow the steps below:
- Go to Tools > Import and Export Settings > Reset all settings and choose to reset to default environment settings.
- Open Registry Editor and navigate to:
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio<version>\OpenFindMRU
- Don't forget to back it up before making any changes. Delete/edit entries pointing to Desktop.
- Close Visual Studio and restart it with:
devenv /resetsettings
Beside from that, there is a workaround that you can also try. Instead of using File > Open > Project/Solution, use File > Recent Project and Solutions instead. This will bypass the Desktop default and open directly from your last-used solution path.
I hope the information I provided above will help! If my answer is helpful, I will appreciate if you can provide me some feedback to let me know. Otherwise, feel free to let me know if you still have any questions or concern related.