Deletion of MSN Messenger

  • Thread starter Thread starter John Smith
  • Start date Start date
J

John Smith

Each time I try to delete the MSN Messenger from my
program files I am denied access. It is not listed in my
add and remove files so I could easily remove that way
either. How do I delete this software??
 
In your add + Remove programs, select the add + remove windows components,
it is the last item, uncheck it.
 
Each time I try to delete the MSN Messenger from my
program files I am denied access. It is not listed in my
add and remove files so I could easily remove that way
either. How do I delete this software??
Try it this way and it will work
'xp_messsenger_remove.vbs - Removes Windows Messenger from Windows XP
'© Doug Knox - 3/30/02
'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