Welcome, Guest [LogIn] / [Register] / [Forgot Password ?]
Home > Tutorials  > Hardware > How to disable media player recent files list ?
How to disable media player recent files list ?
Posted by Ajay Abhishek on Thursday, Nov 19, 2009
| More

open Notepad > Type & Save the below text with a filename xxx.vbs & run it.

'mediaplayer_mru_off.vbs - Prevents additions to the Recent Files List

Option Explicit
On Error Resume Next
Dim p1, p2, p3, WshShell, MyBox

p1 = "HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Preferences\AddToMRU"
p2 = 00
p3 = "HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Player\RecentFileList\"

Set WshShell = WScript.CreateObject("WScript.Shell")

WshShell.RegWrite p1, p2, "REG_BINARY"
WshShell.RegDelete p3

Set WshShell = Nothing

MyBox = MsgBox("Media Player's Recent File list is Disabled", 4096, "Finished")

Add Your Comments/Suggestions :
Name:
Email:
Website:
Your Comments:
 
(required)
(will not be published) (required)


©Copyright 2010 saurabhdeveloper.com