Click here to Skip to main content
15,881,812 members
Articles / Programming Languages / Visual Basic
Tip/Trick

How to kill any process using VB.NET

Rate me:
Please Sign up or sign in to vote.
3.25/5 (5 votes)
13 Mar 2013CPOL 110.5K   4   4
Kill any process using VB.NET.

Introduction

This article is useful for people who want to kill an irritating process using VB.NET. By the way I am using VB.NET 2010.

Using the Code

I know that most people try Formx_load but that kills the program only for once. It can be restarted if Windows allows it. Using this code maybe you will be able to kill an annoying program.

Therefore we use a timer.

Why a Timer?

We are using a timer because the event Formx_load occurs only once but the event Timerx_Tick occurs every second or millisecond. Therefore it kills the program many times until Windows fails to restart it. Remember that this is for experimental purposes only.

The code:   

VB.NET
Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As DevComponents.DotNetBar.ClickEventArgs)
    Timer1.start()
End Sub

Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    For Each prog As Process In Process.GetProcesses
        If prog.ProcessName = "ProcessName" Then
                prog.Kill()
        End If
    Next

You cant paste it into your form.... 

Points of Interest

I was trying to kill a virus which used to run at startup and kill Windows Explorer. I tried to disable it from msconfig but again and again it prompted up and then I found this method!!! 

History 

  • Article posted: 15/12/2012 6:30 PM.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Singapore Singapore
<empty space="">

Comments and Discussions

 
GeneralMy vote of 1 Pin
Sergey Alexandrovich Kryukov13-Jul-13 18:44
mvaSergey Alexandrovich Kryukov13-Jul-13 18:44 
GeneralMy vote of 2 Pin
Klaus Luedenscheidt13-Mar-13 20:10
Klaus Luedenscheidt13-Mar-13 20:10 
i don't see a really sense for this. If i want to kill a process i use Process Explorer. If i have a virus or malware i either use a anti virus software to remove it or reinstall my PC.

On Windows 7 you may need to elevate your program to act as adnmin because otherwise you can't kill every process.
GeneralGood Pin
Globin22-Dec-12 10:35
Globin22-Dec-12 10:35 
QuestionGood idea Pin
Tarek Elqusi16-Dec-12 21:48
professionalTarek Elqusi16-Dec-12 21:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.