Tag: processes
22 script(s) tagged “processes”
Export Processes to CSV (Python)
Exports Processes (Win32_Process) to a timestamped CSV file via wmic.
Get Processes Report (C#)
Queries Win32_Process via WMI (System.Management) and prints Processes to the console.
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β¦
Backup Processes to JSON (Python)
Snapshots Processes (Win32_Process) to a timestamped JSON file for later comparison or auditing.
Get Processes Report (Python)
Uses wmic under the hood to report Processes (Win32_Process) β no third-party packages required.
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β¦
Export Processes to CSV (Batch)
Uses wmic to export Processes (Win32_Process) to a timestamped CSV file.
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β¦
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 β¦
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β¦