'Clear Media Player Recent File list
'mp_mruclear.vbs
'© Doug Knox - rev 03/16/2002
'This code may be freely distributed/modified
'Downloaded from www.dougknox.com 

On Error Resume Next
Set WshShell = WScript.CreateObject("WScript.Shell")

WshShell.RegDelete "HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Player\RecentFileList\"
WshShell.RegDelete "HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Player\RecentURLList\"
Set WshShell = Nothing

MsgBox "Media Player's Recent File list has been cleared.", 4096,"Finished!"