CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Language: C#

Kill Windows Live Messenger

198 Views
Copy Code Show/Hide Line Numbers
var procs = Process.GetProcessesByName("msnmsgr");
if (procs.Length > 0)
{
    var proc = procs[0];
    proc.Kill();
}
by Al Gonzalez
  June 19, 2010 @ 1:05pm

Add a comment


Report Abuse
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate