A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Express Email Newsgroup » Outlook Express
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

sorting blocked senders list



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old March 18th 06, 04:50 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Nebo
external usenet poster
 
Posts: 2
Default sorting blocked senders list

How do I sort the blocked sender list in Outlook Express 6.0?
Ads
  #2  
Old March 18th 06, 04:54 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Bruce Hagen
external usenet poster
 
Posts: 10,210
Default sorting blocked senders list

You don't. WYSIWYG.
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"Nebo" wrote in message
...
How do I sort the blocked sender list in Outlook Express 6.0?


  #3  
Old March 18th 06, 05:40 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Raoul
external usenet poster
 
Posts: 36
Default sorting blocked senders list

Bruce is right. It's stored in the Registry. If it ain't broke, don't fix
it.

"Nebo" wrote in message
...
How do I sort the blocked sender list in Outlook Express 6.0?


  #4  
Old March 18th 06, 05:54 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Bruce Hagen
external usenet poster
 
Posts: 10,210
Default sorting blocked senders list

If you're trying to find a particular address to remove, and can't find it,
I can help with that.
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"Nebo" wrote in message
...
How do I sort the blocked sender list in Outlook Express 6.0?


  #5  
Old March 18th 06, 07:28 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Nebo
external usenet poster
 
Posts: 2
Default sorting blocked senders list

That would be a big help. Please tell me how.
Thanks

"Bruce Hagen" wrote:

If you're trying to find a particular address to remove, and can't find it,
I can help with that.
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"Nebo" wrote in message
...
How do I sort the blocked sender list in Outlook Express 6.0?



  #6  
Old March 18th 06, 07:34 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Bruce Hagen
external usenet poster
 
Posts: 10,210
Default sorting blocked senders list

Find and remove a Blocked Sender address:

OEToolsMessage RulesBlocked Senders ListHighlight the first address on
the listClick ModifyType in address you want to remove. "This address
already exists, are you sure you want to replace it?"Click Yes. Address
will now be at the top of the list. Now you can remove it.
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"Nebo" wrote in message
...
That would be a big help. Please tell me how.
Thanks

"Bruce Hagen" wrote:

If you're trying to find a particular address to remove, and can't find
it,
I can help with that.
--
Bruce Hagen
MS MVP - Outlook Express
~IB-CA~

"Nebo" wrote in message
...
How do I sort the blocked sender list in Outlook Express 6.0?




  #7  
Old March 21st 06, 09:13 AM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Miyahn
external usenet poster
 
Posts: 39
Default sorting blocked senders list

"Nebo" wrote in message
How do I sort the blocked sender list in Outlook Express 6.0?


You can do that through the following script and Excel.
Please note the comments in the code and try this at your own risk.

' FileName : EditBSL.vbs
Option Explicit
Dim WS, FS, LUID, Target, aPath, TimeStamp
Const RootKey = "HKEY_CURRENT_USER\Identities\"
Const OEKey = "\Software\Microsoft\Outlook Express\5.0\"
'
Set WS = CreateObject("WScript.Shell")
Set FS = CreateObject("Scripting.FileSystemObject")
LUID = WS.RegRead(RootKey & "Last User ID")
If LUID = "{00000000-0000-0000-0000-000000000000}" Then _
MsgBox "Can't specify the Last User ID": WScript.Quit
Target = RootKey & LUID & OEkey
aPath = FS.BuildPath(WS.ExpandEnvironmentStrings( _
WS.RegRead(Target & "Store Root")), "BSList.csv")
Target = Target & "Block Senders\"
SaveList:' Export from registry to csv file
EditList:' Open csv file by Excel
'
' ## To enable updating, erase first apostrophe from the following line ##
'LoadList:' Import from csv file to registry
'
Sub SaveList
Dim Buf
Buf = MakeList("Mail")
Buf = Buf & MakeList("News")
With FS.CreateTextFile(aPath): .Write Buf: .Close: End With
TimeStamp = FS.GetFile(aPath).DateLastModified
End Sub
'
Function MakeList(MorN)
Dim Key, BS, I
MakeList = ""
Key = Target & MorN & "\Criteria\"
On Error Resume Next
BS = WS.RegRead(Key & "Order"): If Err Then Exit Function
On Error GoTo 0
BS = Split(BS, " ")
For I = 0 To UBound(BS)
MakeList = MakeList & MorN & "," & BS(I) & "," & _
WS.RegRead(Key & BS(I) & "\Value") & vbCrLf
Next
End Function
'
Sub EditList
With CreateObject("Excel.Application")
.Visible = True
.Workbooks.Open aPath
MsgBox "'Blocked Senders List' has been exported." & vbCrLf _
& "After editing, save the file, quit Excel"
On Error Resume Next
Do While .Visible
WScript.Sleep 100: If Err.Number = &h80010108 Then Exit Do
Loop
On Error GoTo 0
End With
WScript.Sleep 500
End Sub
'
Sub LoadList
Dim BS
If FS.GetFile(aPath).DateLastModified = TimeStamp Then
MsgBox "No change.": Exit Sub
End If
With FS.OpenTextFile(aPath)
Do Until .AtEndOfStream
BS = Split(.ReadLine, ",")
WS.RegWrite Target & BS(0) & "\Criteria\" & _
Right("00" & BS(1),3) & "\Value", BS(2)
Loop
End With
MsgBox "'Blocked Senders List' has been updated."
End Sub

--
Miyahn (Masataka Miya****a) JPN
Microsoft MVP for Microsoft Office - Excel(Jan 2006 - Dec 2006)


  #8  
Old March 21st 06, 12:51 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Opinicus
external usenet poster
 
Posts: 67
Default sorting blocked senders list

"Miyahn" wrote

How do I sort the blocked sender list in Outlook Express 6.0?

You can do that through the following script and Excel.
Please note the comments in the code and try this at your own risk.
' FileName : EditBSL.vbs


Hmm... That looks very useful. But also very dangerous. Has anyone tried it?

--
Bob
http://www.kanyak.com


  #9  
Old March 21st 06, 02:39 PM posted to microsoft.public.windows.inetexplorer.ie6_outlookexpress
Miyahn
external usenet poster
 
Posts: 39
Default sorting blocked senders list

"Opinicus" wrote in message
Hmm... That looks very useful. But also very dangerous. Has anyone tried it?


dangerous? Where?


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Blocked Senders List Problem Jason Russell Outlook Express 3 March 4th 06 09:25 AM
Problems with Blocked Senders List in OE6 Fred Outlook Express 2 February 15th 06 01:57 AM
bLOCKED senders list JIMPAP Outlook Express 5 February 13th 06 08:39 PM
Adding blocked senders in Outlook 2K3 Bman Outlook - Using Contacts 1 January 24th 06 06:32 PM
Outlool 2k3 Adding Blocked Senders Bman Outlook - General Queries 1 January 24th 06 06:01 PM


All times are GMT +1. The time now is 07:50 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.