From 907f6d78483b7062dd387f7d22b3a91cd8eb7850 Mon Sep 17 00:00:00 2001 From: sleevezipper Date: Fri, 3 Sep 2021 16:21:39 +0200 Subject: [PATCH] Add WMI process example #107 Thanks @lafferlaffer! --- documentation/WMIQuery.md | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/WMIQuery.md b/documentation/WMIQuery.md index f294020..4fda9b3 100644 --- a/documentation/WMIQuery.md +++ b/documentation/WMIQuery.md @@ -26,3 +26,4 @@ You can use [WMI Explorer](https://github.com/vinaypamnani/wmie2/tree/v2.0.0.2) |Query|Explanation|Submitted by| |---|---|---| |`SELECT username FROM Win32_ComputerSystem`|Shows the current user|@grizzlyjere| +|`Select * from Win32_Process Where Name = 'notepad.exe'`|Shows if the defined process is running|@lafferlaffer|