Skip to content

Commit aa09cfa

Browse files
committed
Added Process Monitor (procmon)
1 parent e9370b8 commit aa09cfa

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Binary file not shown.

monitoring/procmon/procmon-cli.ps1

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This script is used to start Process Monitor in the background with a specific configuration file.
2+
# https://learn.microsoft.com/en-us/sysinternals/downloads/procmon
3+
4+
procmon.exe /Quiet /Minimized /LoadConfig ProcmonConfigurationObsidian.pmc /Backingfile MonitorLog.pml
5+
6+
# Configuration File: ProcmonConfigurationObsidian.pmc
7+
8+
# Monitoring Activities
9+
# Show Process and Thread Activity
10+
# Show Network Activity
11+
12+
# Capture Events (Drop filtered events)
13+
# Filters
14+
# - ✅Process Name is Obsidian.exe
15+
# - ❌Operation is NOT Thread Create
16+
# - ❌Operation is NOT Thread Exit
17+
# - ❌Operation is NOT Load Image

0 commit comments

Comments
 (0)