Mircrosoft Junk E-Mail Options

T

travdaddy

Is there a way to change the level of junk e-mail protection you want through
the registry. An example would be changing it from No Automatic Filtering, to
Low. I tried using RegMon, but I couldn't find anything.

Thanks for the help in advance.
 
T

travdaddy

travdaddy said:
Is there a way to change the level of junk e-mail protection you want through
the registry. An example would be changing it from No Automatic Filtering, to
Low. I tried using RegMon, but I couldn't find anything.

Thanks for the help in advance.

bump
 
T

travdaddy

travdaddy said:

I figured this one out on my own.
There is a registry key that you can change, it can differ among systems,
but here are the keys.
HKCU\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging
Subsystem\Profiles\Default Outlook
Profile\0a0d020000000000c000000000000046\0003041b"
HKCU\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging
Subsystem\Profiles\Microsoft
Outlook\0a0d020000000000c000000000000046\0003041b"
HKCU\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging
Subsystem\Profiles\Outlook\0a0d020000000000c000000000000046\0003041b"

Like I said the key can very from system to system, but if you make that key
equal to "FF FF FF FF" in binary it will turn junk mail to "No Automatic
Filtering".

How do you do that? With this set of code.

iValues = Array(&Hff,&Hff,&Hff,&Hff)
BinaryValueName = "0003041b"
strKeyPath2 = "Software\Microsoft\Windows NT\CurrentVersion\Windows
Messaging Subsystem\Profiles\Outlook\0a0d020000000000c000000000000046"
strKeyPath4 = "Software\Microsoft\Windows NT\CurrentVersion\Windows
Messaging Subsystem\Profiles"
oReg.EnumKey HKEY_CURRENT_USER, strKeyPath4, arrSubKeys

For Each subkey In arrSubkeys
If subkey = "Outlook" Then
oReg.SetBinaryValue HKEY_CURRENT_USER, strKeyPath2, BinaryValueName, iValues
End If
Next

Thats just my variation for one of them, you can make whatever changes you
want to the code. Just thought some people would like to know how to change
junk mail.
 
T

The_professor

AWESOME!! Works like a champ! The only caveat is that it assumes that user
created a profile with the name of "default Outlook Profile" which is usually
the case 95% of the time.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top