New
#60
FYI...
To clear Recent Documents or Items, you can use this silent and clickable .vbs script. So easy.
Just place this in Notepad or similar and rename to CR.vbs - you can even create a shortcut from it.
Set WshShell = WScript.CreateObject("WScript.Shell")
Set objFSO = CreateObject("Scripting.FileSystemObject")
sRD = WshShell.SpecialFolders("Recent")
if sRD <> "" then
On Error Resume Next
objFSO.DeleteFile(sRD & "\*.lnk")
end if
Works in XP, 7, 8 and 10.
![]()
Last edited by Compumind; 21 Oct 2018 at 17:50.
Hello Richard,
For that, you would want to use this below instead.
Clear File Explorer History in Windows 10 | Windows 10 Tutorials
Sorry, I was looking to clear all the other lists without affecting the run command history.
Hi,
The tutorial works in 1903? I did it but I still have "Frequent places" ::
1 Desktop
2 Downloads
3 Documents
4 Pictures
Am I missing something? How to remove these all?