Return to Snippet

Revision: 33436
at October 8, 2010 20:14 by amitkenny


Initial Code
Process[] localprocesses;
           while(true)
           {

               localprocesses = Process.GetProcessesByName("application name");
              
                  if (localprocesses.Length > 0)
                   {


                       Console.SetWindowPosition(0, 0);
                       Console.SetWindowSize(Console.LargestWindowWidth, Console.LargestWindowHeight);
                       Console.Beep(1400, 1000);
                    }   
             }

Initial URL


Initial Description


Initial Title
Detect an application or process running on the system

Initial Tags


Initial Language
C#