Easy process timer for Windows

Is there a lightweight process timer like Unix time that is included with Windows? Sometimes I just need a rough estimate, without having to exit the real profiler. While I could collapse on my own, I would rather use the existing solution.

0


source to share


5 answers


You can grab the cygwin release at cygwin.org - it has many command line tools that you will find useful on Unix for WIN32.



+2


source


You can use procmon or just get the "time" from msys / cygwin



+1


source


I am using the timethis tool from the Windows Resource Kit.

+1


source


    System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();
    sw.Start();
    //do your processing
    sw.Stop();

    Console.WriteLine(sw.ElapsedMilliseconds);

      

0


source


Ctrl-Alt-Delete: Then select "Task Manager" and a tab for processes will appear

-3


source







All Articles