Click here to Skip to main content
Licence 
First Posted 17 Nov 2002
Views 91,550
Bookmarked 31 times

Kill any application with system menu using C#

By | 17 Nov 2002 | Article
This article uses Windows APIs to kill any application with a system menu

Introduction

This article uses the Windows API’s to kill the application running under windows environment. So here we will see how to import a function from unmanaged library to managed application. To simplify the process of using platform invoke in our program, we will create a class called Win32, Which will have all native declarations in it.

With C# we can use the Microsoft Windows API SendMessage function to close any active window that has a system menu with the Close option. Below Figure 1 displays the System Menu of Calculator application.

Figure 1. Displaying System Menu.

Details

In our sample Kill application we will use SendMessage function to send a message to any window in the environment provided the handle to the window is known. To know the handle we can use FindWindow function which will determine the handle associated with the window the user, wants to close.

In order to use FindWindow, you must know either the Class Name or the Caption (if any) of that window. One can get the information about the Class Name or the Caption using Microsoft Spy++ tool available in Visual Studio .Net Tools. Below Figure 2 shows the working of Spy++ tool.

Figure 2. Displaying usage of Microsoft Spy++ Tool.

So lets examine the Win32 class, which has all the Platform Invoke declarations. This class will simply group all the functions we need for our application.

public class Win32 
{ 
    public const int WM_SYSCOMMAND = 0x0112; 
    public const int SC_CLOSE = 0xF060; 

    [DllImport("user32.dll")] 
    public static extern int FindWindow( 
        string lpClassName, // class name 
        string lpWindowName // window name 
    ); 

    [DllImport("user32.dll")] 
    public static extern int SendMessage( 
        int hWnd, // handle to destination window 
        uint Msg, // message 
        int wParam, // first message parameter 
        int lParam // second message parameter 
    ); 
} 

In C# the DllImport attribute is used to identify the name of the actual DLL that contains the exported functions. In order to apply the attribute the method must be defined as static and external.

We will be calling above class methods in button click event of Kill application. Following is the code snippet for it. 

private void button1_Click(object sender, System.EventArgs e) 
{ 
    // Determine the handle to the Application window. 
    int iHandle=Win32.FindWindow(txtClsNm.Text ,txtWndNm.Text); 
    // Post a message to Application to end its existence. 
    int j=Win32.SendMessage(iHandle, Win32.WM_SYSCOMMAND, 
        Win32.SC_CLOSE, 0); 
}

Figure 3. Kill application sending “Close Message” to Calculator application.

For further reading on Platform Invoke

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Chandra Hundigam

Architect

United States United States

Member

Chandra Hundigam has Master degree in Computer Application, Microsoft Certified Professional and Software Architect. He's significantly involved in enterprise application development and distributed object oriented system development using Microsoft .Net, Sun Java/J2EE technology to serve global giants in the Media, Finance, Mortgage and Software Industries.Presently working as Independent Software Consultant for a US-based company.His areas of interests are in emerging Technologies.

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. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionC# Pinmembernandale1:06 22 May '07  
GeneralAlternative to FindWindow in C# Pinmembermycsharpcorner3:31 6 Apr '07  
There is a better managed code alternative to FindWindow. Check out this link:
 
http://www.mycsharpcorner.com/Post.aspx?postID=32[^]
 
You can even close the window without calling any Native DLL

 
For more tips, go to: http://www.mycsharpcorner.com

QuestionWhat is the reason behind the int j? Pinmemberwin32newb8:52 19 Jun '04  
GeneralVISIT PinsussAnonymous19:00 4 May '04  
QuestionWhere can I found more information about message constants values? PinmemberJavier Lanatta3:54 31 Jul '03  
AnswerRe: Where can I found more information about message constants values? PinmemberRomkaFromUa7:28 5 Sep '06  
Questionwhy don't use Kill()? PinsussAnonymous3:25 26 Nov '02  
AnswerRe: why don't use Kill()? PinsussAnonymous6:49 26 Nov '02  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120529.1 | Last Updated 18 Nov 2002
Article Copyright 2002 by Chandra Hundigam
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid