• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How: need to delete reg entries

How do I make a shortcut to delete a specific registry entry when i'm done using it???

Windows Live Movie Maker keeps the "Recent Project" history with-out an option to delete it. I found the way to do it by editing the registry. I am wondering if I could just make a simple short-cut and simply "click" instead of going through the reg to do this.

I think the string is Local User\Software\Microsoft\Windows Live\Movie Maker\Recent
 
Last edited:
There's a command line tool REG that lets you delete entries. You could easily put this in a batch file.
 
1. Open notepad
2. Paste

reg delete "HKCU\Software\Microsoft\Windows Live\Movie Maker\Recent" /f

3. Save As "MovieMakerCleanup.bat" or something similar. Include quotes around the filename so that notepad does not append a .txt extension.

4. Double-click .bat file to run.
 
Back
Top