How to remove project from the Project Wizard

Hey

My project list in this startup wizard (or when you Open Project) is getting filled with old stuff that just annoy me. Is there any way to remove those entries or “purge” the list from projects that no longer exist?

Thanks in advance
Andrzej

On Windows, this is written to the registery.

Run regedit, and find the key -

HKEY_CURRENT_USER\Software\Unity Technologies\Unity Editor 3.x

There you’ll see the list of RecentlyUsedProjectPaths you can delete them :slight_smile:

I create this software that help in easy way remove projects in Windows.

104360-projeclistcapture.jpg

For Unity 5.X - http://arjierdagames.com/links/projectlistv5

For Unity 4.X - http://arjierdagames.com/blog/archivos/Project%20List%20Unity%20Manager.zip

I tend to just rename the project directory – say, from ProjectA/ to ProjectA-2/. Then restart Unity: it won’t find the project, and will remove it from the project window. Then quit Unity once again. Optional: renaming ProjectA-2/ back to ProjectA/.

A bit of a hacky workaround, though some might prefer it to registry hacking.

On Ubuntu

open file ~/.local/share/unity3d/prefs and remove lines with RecentlyUsedProjectPaths

Windows:

  • Run regedit
  • Locate HKEY_CURRENT_USER\Software\Unity Technologies\Unity Editor [VERSION].x
  • Delete RecentlyUsedProjectPaths value

Mac:

  • Open ~/Library/Preferences/com.unity3d.UnityEditor[VERSION].x.plist
  • Delete RecentlyUsedProjectPaths-[NUMBER] key/value

Ubunutu:

  • Open ~/.local/share/unity3d/prefs
  • Delete RecentlyUsedProjectPaths line

Courtesy of https://forum.unity.com/threads/clear-recently-opened-projects.32460/

what about this bash script? :wink: - and thanks for all information!!!

#!/bin/bash
cat ~/.local/share/unity3d/prefs | grep -v RecentlyUsedProjectPaths > ~/.local/share/unity3d/prefsnew
mv ~/.local/share/unity3d/prefs ~/.local/share/unity3d/prefsbackup
mv ~/.local/share/unity3d/prefsnew ~/.local/share/unity3d/prefs