We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9370b8 commit aa09cfaCopy full SHA for aa09cfa
monitoring/procmon/ProcmonConfigurationObsidian.pmc
2.24 KB
monitoring/procmon/procmon-cli.ps1
@@ -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