Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/wmi-examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ Query: ```SELECT Value FROM AIDA64_SensorValues WHERE ID="TGPU1"```

Query: ```SELECT DeviceID FROM Win32_USBHub WHERE DeviceID LIKE "USB\\VID_19F7&PID_0003%"```

#### Check for multiple active procsses
#### Check for multiple active processes

Query: ```Select * from Win32_Process Where Name = bf2042.exe OR Name = HorizonZeroDawn.exe OR Name = HaloInfinite.exe OR Name = Cyberpunk2077.exe OR Name = BlackOpsColdWar.exe OR Name = ModernWarfare.exe OR Name = GoW.exe OR Name = reactivedrop.exe```
Query: ```Select * from Win32_Process Where Name = 'bf2042.exe' OR Name = 'HorizonZeroDawn.exe' OR Name = 'HaloInfinite.exe' OR Name = 'Cyberpunk2077.exe' OR Name = 'BlackOpsColdWar.exe' OR Name = 'ModernWarfare.exe' OR Name = 'GoW.exe' OR Name = 'reactivedrop.exe'```

Thanks **stephack**

Expand Down