Disable MSN when Outlook Express Launches?

  • Thread starter Thread starter Tea Nes
  • Start date Start date
T

Tea Nes

It keeps popping up. It doesn't connect because I disabled that in the
options but I don't want the msn messenger to even start when I launch OE.
 
You can find the option box in the Tools->options

or the second way is

type this command in the command box "gpedit.msc" you can find the
the Messager function here and you can disable the MSN start
 
-----Original Message-----
You can find the option box in the Tools->options

or the second way is

type this command in the command box "gpedit.msc" you can find the
the Messager function here and you can disable the MSN start
start when I launch OE.

Yes, Since I don't use it, then I also have removed it
(Messenger). The below trick should also works. Create
a file with extension REG and with the following contens:

REGEDIT4
; Skip Messenger in WinXP (PC Planet nr 22 2002 side 47).
[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Messenger\
Client]
"PreventRun"=dword:00000001

; Benny Pedersen,
; http://2dos.homepage.dk
 
-----Original Message-----
-----Original Message-----
You can find the option box in the Tools->options

or the second way is

type this command in the command box "gpedit.msc" you can find the
the Messager function here and you can disable the MSN start
start when I launch OE.

Yes, Since I don't use it, then I also have removed it
(Messenger). The below trick should also works. Create
a file with extension REG and with the following contens:

REGEDIT4
; Skip Messenger in WinXP (PC Planet nr 22 2002 side 47).
[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Messenger\
Client]
"PreventRun"=dword:00000001

; Benny Pedersen,
; http://2dos.homepage.dk

Moreover:
I just found this. Save as VBScript (is a text file
with extension VBS)

'xp_messsenger_remove.vbs - Removes Windows Messenger
from Windows XP
'© Doug Knox - 3/30/02
'This code may be freely distributed/modified
'Downloaded from www.dougknox.com

Option Explicit
On Error Resume Next

'Dimension variables
Dim WSHShell, MyBox, p1, q1, rcmd
Dim jobfunc

'Set the Windows Script Host Shell and assign values to
variables
Set WSHShell = WScript.CreateObject("WScript.Shell")
p1 = "HKEY_LOCAL_MACHINE\Software\Microsoft\Outlook
Express\Hide Messenger"
q1 = 2
rcmd = "RunDll32 advpack.dll,LaunchINFSection %windir%
\inf\msmsgs.inf,BLC.Remove"

'Create or change the Hide Messenger value
WSHShell.RegWrite p1, q1

'Run the uninstall command
WshShell.Run(rcmd)
 
Back
Top