Tag: processes

22 script(s) tagged “processes”

🐍 Python 3.10+

Export Processes to CSV (Python)

Exports Processes (Win32_Process) to a timestamped CSV file via wmic.

🟣 C# / .NET 6+

Get Processes Report (C#)

Queries Win32_Process via WMI (System.Management) and prints Processes to the console.

🧬 WQL / PowerShell

Win32_Process: Sorting Processes (WQL has no ORDER BY)

WQL has no ORDER BY clause β€” this shows the standard workaround of piping Get-CimInstance results through Sort-Object o…

🐍 Python 3.10+

Backup Processes to JSON (Python)

Snapshots Processes (Win32_Process) to a timestamped JSON file for later comparison or auditing.

🐍 Python 3.10+

Get Processes Report (Python)

Uses wmic under the hood to report Processes (Win32_Process) β€” no third-party packages required.

🧬 WQL / PowerShell

Win32_Process: Filtering Processes (WQL WHERE)

Shows the WQL WHERE clause syntax against Win32_Process, starting from a LIKE '%' wildcard you customize with a real se…

πŸ–₯️ Batch (CMD)

Export Processes to CSV (Batch)

Uses wmic to export Processes (Win32_Process) to a timestamped CSV file.

🧬 WQL / PowerShell

Win32_Process: Finding Associated Objects (WQL ASSOCIATORS OF)

Demonstrates Get-CimAssociatedInstance, the modern CIM equivalent of WQL's ASSOCIATORS OF syntax, against a Win32_Proce…

πŸ“Š VBA (Excel)

Export Processes to CSV via WMI (VBA)

Queries Win32_Process via WMI and writes every Processes row straight to a CSV file in Documents, using plain VBA file …

🧬 WQL / PowerShell

Win32_Process: Querying Processes Remotely (CIM Session)

Runs the same Win32_Process WQL query against a remote computer over a CIM session β€” the modern, WinRM-based replacemen…