Click here to Skip to main content
Click here to Skip to main content

How to kill any process using VB.NET

By , 13 Mar 2013
 

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:   

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)

About the Author

sids123
India India
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 2 PinmemberKlaus Luedenscheidt13 Mar '13 - 20:10 
GeneralGood PinmemberGlobin22 Dec '12 - 10:35 
QuestionGood idea PinmemberTarek Elqusi16 Dec '12 - 21:48 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 13 Mar 2013
Article Copyright 2012 by sids123
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid