A simple C++ Windows tool to get information about processes exposing named pipes.
-
Command line options:
-
-j
or--json
to specify the JSON output file path. -
-c
or--csv
to specify the CSV output file path. -
-h
or--help
to display help information. -
-v
or--verbose
to enable verbose output.
-
-
Output formats:
- JSON output with process details and named pipes
- CSV output with process ID, name, path and pipes
- Text output with process ID, name, path and pipes
C:\> FindProcessesWithNamedPipes.exe -h
Find Processes With Named Pipes - by Remi GASCOU (Podalirius)
Usage: FindProcessesWithNamedPipes.exe [-c csv] [-d debug] [-h help] [-j json] [-s show] [-t text]
Optional arguments:
-h, --help Displays this help message. (default: false)
-j, --json Output results in JSON format (default: )
-c, --csv Output results in CSV format (default: )
-t, --text Output results in plain text format (default) (default: )
-s, --show Print the results. (default: false)
-d, --debug Enable debug logging (default: false)
Pull requests are welcome. Feel free to open an issue if you want to add other features.