Search code examples
sysinternalsprocmonprocess-monitor

Sysinternals Process Monitor (ProcMon): Using wildcards on filter


I am using Sysinternals Process Monitor to debug some incoming events and now I am trying to create a filter on Path and using wildcards. What I am trying to use is to filter path which begin with c:\MyApp\MyDocuments\Temp and ends with .pdf

Path filter should look like this: c:\MyApp\MyDocuments\Temp*.pdf

How can I do this?


Solution

  • AFAIK, this is not possible. You can just use

    begins with c:\MyApp\MyDocuments\Temp and another filter ends with .pdf.