About 211,000 results
Open links in new tab
  1. How to find which process deleted my file in Windows

    Jul 20, 2023 · In simplest terms, is there a simple way or program which can help identify who/which process has deleted the file. Even in the latest version of Process Monitor by …

  2. Tracking CPU and Memory usage per process - Stack Overflow

    Jun 1, 2013 · Process Lasso is designed more for process automation and priority class optimization, not graphs. That said, it does offer per-process CPU utilization history (drawn as …

  3. Monitoring certain system calls done by a process in Windows

    56 I would like to be able to monitor certain system calls made by a process, primarily file I/O calls. On Linux I can probably get away using strace with suitable parameters, but how can I …

  4. How does SysInternal's ProcessMonitor work? - Stack Overflow

    Jan 28, 2011 · How Filemon Works For the Windows 9x driver, the heart of Filemon is in the virtual device driver, Filevxd.vxd. It is dynamically loaded, and in its initialization it installs a file …

  5. What is private bytes, virtual bytes, working set?

    595 I am trying to use the perfmon windows utility to debug memory leaks in a process. This is how perfmon explains the terms: Working Set is the current size, in bytes, of the Working Set …

  6. What API to grab windows process status? - Stack Overflow

    Jul 7, 2023 · I need to write a small application to monitor the status of a Windows process using Delphi or C++. A call that will show me Process Status, particularly when the status is 'not …

  7. Sysinternals Process Monitor (ProcMon): Using wildcards on filter

    Oct 2, 2020 · For example, if you specified process name include filters for Notepad.exe and Cmd.exe and a path include filter for C:\Windows, Process Monitor would only display events …

  8. How to monitor total CPU for multiple instances of the same …

    Jun 18, 2025 · Hello, We have recently configured the Windows Process Monitor to monitor the CPU Usage of a particular Process. However, we have discovered that this Process can spin …

  9. How to suspend/resume a process in Windows? - Stack Overflow

    Jun 13, 2012 · In Unix we can suspend a process execution temporarily and resume it with signals SIGSTOP and SIGCONT. How can I suspend a single-threaded process in Windows …

  10. How to detect win32 process creation/termination in c++

    43 I know that to receive notifications about Win32 process creation or termination we might implement a NT kernel-mode driver using the APIs PsSetCreateProcessNotifyRoutine() that …