スタート→「ファイル名を指定して実行」をクリック。
regedit と入力して、「OK」をクリック。
レジストリエディタが起動されます。
HKEY_CURRENT_USER
+Software
+Microsoft
+MediaPlayer
+Player
+RecentFileList←クリック(Windows Media Player7)
+RecentURLList ←クリック(Windows Media Player6.4)
ここに保存されています。
キー内の
File0 ~File8 を削除します。
それとも、メモ帳を開いて以下の文章を貼り付けて
------この下から(WindowsMediaplayer7以上の場合)------
var WMPlistKey = "HKCU\\\Software\\Microsoft\\MediaPlayer\\Player\\RecentFileList\\";
var WshShell = new ActiveXObject("WScript.Shell");
WshShell.RegWrite( WMPlistKey,"");
WshShell.RegDelete( WMPlistKey+"\\" );
------この上まで------
------この下から(WindowsMediaPlayer6.4の場合) ---------
var WMPlistKey = "HKCU\\\Software\\Microsoft\\MediaPlayer\\Player\\RecentURLList\\";
var WshShell = new ActiveXObject("WScript.Shell");
WshShell.RegWrite( WMPlistKey,"");
WshShell.RegDelete( WMPlistKey+"\\" );
------この上まで------
これを、WmpListDel.js として保存してダブルクリックすると、
削除されます。
お礼
こんな便利な方法もあるのですね。 ありがとうございました。