This script will fix the unread mail in the Quick View News folder. (VBScript)
| On Error Resume Next Set PmShell = WScript.CreateObject("WScript.Shell") Message = "This script will fix the News Quick View." & vbCR Message = Message & "Close Windows Live Mail before you run this script." & vbCR & vbCR Message = Message & "Continue?" X = MsgBox(Message, vbYesNo, "Notice") If X = 6 Then PmShell.RegDelete "HKCU\Software\Microsoft\Windows Live Mail\SearchFolderVersion" MsgBox "Done!" & vbCrLf & "Now you can restart Windows Live Mail.", 64, "All News Fixed" End If |