iTechtalk

Quick Search

Go Advanced

Member Login

Not registered? | Forgot Password
 
Register
Welcome
 
iTechtalk > Tutorials > Operating systems » Cleaning Out the Recent Documents List In Windows XP
Reply
Old 12-05-2008, 10:22 AM   #1 (permalink)
 
Noah's Avatar
 
Junior Member
Join Date: Nov 2008
Posts: 7
Smile Cleaning Out the Recent Documents List In Windows XP

Cleaning Out the Recent Documents List In Windows XP


The batch program that follows, called CleanRecent.bat, removes some of the files from the recently used documents list that you see if you select My Recent Documents from the Start menu. Removing document types that you don’t want on this list allows room for more of the documents that you do want to see.

@echo off
rem Cleans unwanted file types from the Recent folder
title Clean Recent
echo Cleaning Recent folder...
for %%t in (wav log ini) do del "%userprofile%\recent\*.%%t.lnk"
echo.
echo Done cleaning Recent folder.
title Command Prompt


This batch program uses the For…In…Do command to repeatedly execute the Del command. The document type file name extensions that you want to remove from the list are enclosed in the parentheses. The For command executes the Del command once for each entry in this list. The variable %%T contains the current extension and is substituted in the Del command. This is effectively the same as typing three Del commands.

Note that the file names have an .lnk extension added. This is because the Recent folder contains shortcuts (which have the extension .lnk) rather than containing the actual recently used files.
Noah is offline   Reply With Quote
 
Reply

Bookmarks

Tags
cleaning out, recent documents list, windows xp

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Enable or Disable Recent Items list in Start Menu maximus Windows Vista 0 04-29-2009 11:08 AM
How to turn off recent search items display in Windows 7 techie Windows 7 0 03-25-2009 09:13 AM
How to display or hide Recent Items list in Start menu in Windows 7 singh Windows 7 0 03-21-2009 08:19 AM
Removing the My Recent Documents Menu In Windows XP Symbian Operating systems 0 12-02-2008 11:00 AM
Removing Items from the My Recent Documents Menu In Windows XP MTvRoadies Operating systems 0 12-01-2008 10:20 AM


 

Content Relevant URLs by vBSEO 3.3.0