Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove the older projects entries/list/history from the Visual Studio Opening Window?

All the Recently worked projects will be available in Visual Studio Opening window. Even if the projects are removed from our file explorer, those names will exist in the VS Opening Window.

I'm able to delete those recent projects entries/history one at a time by using this option:

enter image description here

My Question is:

How to delete all those history/entries at a time to see like the below window (screen)?

enter image description here


1 Answers

Is not working with VS2022 though...

This might be a better solution to your problem.

Open powershell and navigate to C:\Program Files\Microsoft Visual Studio\2022\{SKU}\Common7\IDE. where {SKU} is one of Enterprise, Professional or Community. Use the vswhere command in C:\Program Files (x86)\Microsoft Visual Studio\Installer if you're unsure where your particular install is.

Then run the command .\devenv.exe /resetuserdata and the recent history data will be cleaned.

Note; This command resets all settings, not just the MRU list. After executing this command, you will have to setup Visual Studio again from scratch.

like image 109
Georges Mafkas Avatar answered Sep 19 '25 08:09

Georges Mafkas