Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8517167
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T05:37:32+00:00 2026-06-11T05:37:32+00:00

Possible Duplicate: Track started applications in Windows I’ like to create a program or

  • 0

Possible Duplicate:
Track started applications in Windows

I’ like to create a program or service in C# which monitors when a user launches a certain application like excel or access. With System.Diagnostics.Process I can get the running processes but I want to monitor the event when a user launches the application. We’d like to create some sort of usage history.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T05:37:33+00:00Added an answer on June 11, 2026 at 5:37 am

    I did a small example using WqlEventQuery object to check if there is a new instance of a process. Afterwards check for the name and do as you want. If you want to improve my query – feel free to have a look at the according syntax description.

    private static void lookForExcel()
    {
        WqlEventQuery query = new WqlEventQuery("__InstanceCreationEvent", new TimeSpan(0, 0, 1), "TargetInstance isa \"Win32_Process\"");
        ManagementEventWatcher watcher = new ManagementEventWatcher(query);
        watcher.EventArrived += new EventArrivedEventHandler(watcher_EventArrived);
        watcher.Start();
        Console.ReadLine();
        watcher.Stop();
    }
    
    static void watcher_EventArrived(object sender, EventArrivedEventArgs e)
    {
        string instanceName = ((ManagementBaseObject)e.NewEvent["TargetInstance"])["Name"].ToString();
        if (instanceName.ToLower()=="excel.exe")
        {
            Debug.WriteLine("Excel has been started ...");    
        }            
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Objective C for Windows iPhone development on Windows Is there any way
Possible Duplicate: Datetime vs Timestamp? I have a Mysql table, which has a column
Possible Duplicate: Receiving power notifications (especially shutdown) on Mac OSX Hi Guys, I'd like
Possible Duplicate: slow android emulator My tablet is not here yet, which is why
Possible Duplicate: How to track mouse X/Y position and print it to a label?
Possible Duplicate: discover when the element is inserted to the std::map I track inserting
Possible Duplicate: Google Analytics to track FireFox extension use I tried injecting a script
Possible Duplicate: Listening for variable changes in JavaScript or jQuery How can I track
Possible Duplicate: fb like button creates a white background on page onload in all
Possible Duplicate: Simple C implementation to track memory malloc/free? I need to know how

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.