Also, you don't need to kill msgplus.exe on those other accounts...
What you could do is remove the Plus!-startup key from your run settings in the registry. In that way Plus! would never start up when you start windows. The registry key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
Then, in order to use Plus! with some account, you need to manualy start Plus! first and then MSN Messenger... This can be done with a little VBS-script for example:
code:
Option Explicit
On Error Resume Next
Dim WshShell
Set WshShell = CreateObject("WScript.Shell")
WshShell.Exec "C:\Program Files\Messenger Plus! 2\MsgPlus.exe"
WScript.Sleep 1000
WshShell.Exec "C:\Program Files\MSN Messenger\msnmsgr.exe"
Set WshShell = Nothing
note: the WScript.Sleep 1000 is very important!!! Plus! needs some time to initialize before messenger is started...
! ! ! ! !
Bare in mind that this method isn't "recommended", nor "supported". Although it works flawlessly...
! ! ! ! !