January 19, 200719 yr there is a setting in the properties of the start menu to not show these.How do you clear recent documents and programs from start menu in vista?
January 20, 200719 yr Author That's not what I asked I know how to not show them, but I would like to know how to clear them
January 20, 200719 yr Here is a vbs script that will clear out the My Recent DocumentsSave as ClearRecent.vbsDim Act : Set Act = CreateObject("Wscript.shell")Dim Fso : Set Fso = CreateObject("Scripting.FileSystemObject")Dim User : User = Act.ExpandEnvironmentStrings("%userProfile%\recent\")Dim Folder : Set Folder = Fso.GetFolder(User)Dim Files : Set Files = Folder.FilesDim objFile For Each objFile in Files Fso.DeleteFile(objFile.Path), True Next Act.Popup "Completed Script",5,"Finished",4128'-> Deletes The File If Used from A SFX Uncomment To Make Active' If Fso.FileExists(WScript.ScriptFullName) Then ' Fso.DeleteFile(WScript.ScriptFullName)' End If Edited April 25, 200719 yr by gunsmokingman
January 21, 200719 yr I take it there is no built in function in vista for this then?No, there is such function in Vista. Right click on "Recent Items" item in Start Menu and choose "Clear Recent Items List".
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now