{"id":28409459,"url":"https://github.com/papishushi/fpprocess","last_synced_at":"2025-06-25T00:31:27.761Z","repository":{"id":56728781,"uuid":"523555813","full_name":"Papishushi/fpprocess","owner":"Papishushi","description":"Terminal tool targeted for Windows, its purpose is to find the full list of parent processes based on supplied PIDs or process names by stdin.","archived":true,"fork":false,"pushed_at":"2022-08-14T01:44:00.000Z","size":59,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-02T17:28:24.643Z","etag":null,"topics":["cli","collaborate","dotnet6","elevated-rights","ghdesktop","github","learn","parent","processmonitoring","processparent","terminal","windows"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Papishushi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"code_of_conduct.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-08-11T02:03:53.000Z","updated_at":"2025-04-07T00:48:08.000Z","dependencies_parsed_at":"2022-08-16T00:40:13.741Z","dependency_job_id":null,"html_url":"https://github.com/Papishushi/fpprocess","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Papishushi/fpprocess","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Papishushi%2Ffpprocess","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Papishushi%2Ffpprocess/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Papishushi%2Ffpprocess/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Papishushi%2Ffpprocess/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Papishushi","download_url":"https://codeload.github.com/Papishushi/fpprocess/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Papishushi%2Ffpprocess/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261782268,"owners_count":23208901,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cli","collaborate","dotnet6","elevated-rights","ghdesktop","github","learn","parent","processmonitoring","processparent","terminal","windows"],"created_at":"2025-06-02T08:15:20.878Z","updated_at":"2025-06-25T00:31:27.734Z","avatar_url":"https://github.com/Papishushi.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fpprocess v1.1.1 [![CodeQL](https://github.com/Papishushi/fpprocess/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/Papishushi/fpprocess/actions/workflows/codeql-analysis.yml) [![.NET](https://github.com/Papishushi/fpprocess/actions/workflows/dotnet.yml/badge.svg)](https://github.com/Papishushi/fpprocess/actions/workflows/dotnet.yml)\nTerminal tool targeted for Windows, its purpose is to find the full list of parent processes based on supplied PIDs or process names by stdin.\n# Usage\n* ### Get process info from PID '4'.\n      .\\fpprocess.exe 4\n* ### Get process info from the first process named 'System'.\n      .\\fpprocess.exe System\n* ### Get process info from the first processes named 'eldenring' 'steam'.\n      .\\fpprocess.exe eldenring steam  \n* ### Get process info from the first process named 'msedgewebview2' then from PID '4' and last from the first process named 'svchost' .\n      .\\fpprocess.exe msedgewebview2 4 svchost   \n* ### Get process info from the first process named 'fpprocess' then from the first process named 'winlogon' specifying output with no color.\n      .\\fpprocess.exe fpprocess winlogon --no-color\n* ### Periodically get process info from PID '1420' every 1500 miliseconds, to stop press *Crtl+C*.\n      .\\fpprocess.exe 1420 -i 1500\n* ### Output processes info to a file.\n      .\\fpprocess.exe conhost MiniSearchHost dllhost \u003e\u003e hostingProcesses.txt\n* ### Log to a file every 10000 miliseconds, to stop press *Crtl+C*.\n      .\\fpprocess.exe -i 10000 1420 \u003e\u003e wininitProcess.txt\n# Installing\n***(Extra) You can add it to PATH to use it on any working directory by just typing fpprocess.***\n  * Search \"edit ENV\" on windows.                                                                 \n  * Open the result.                                                                              \n  * Follow this actions: User Variables For \"Your Username\"\u003eEdit\u003eNew.                                      \n  * To end add the destination path for the installation.\n## Release\n* Download last release.\n* Unzip *'fpprocess-v1.x.x.7z'*.\n* Move **ALL** the contents together to their final destination.\n* Use it on your terminal!\n## NuGet Package\n* ### Package Manager\n      Install-Package fpprocess -Version 1.1.1\n* ### .NET CLI\n      dotnet add package fpprocess --version 1.1.1\n* ### PackageReference (XML Node)\n      \u003cPackageReference Include=\"fpprocess\" Version=\"1.1.1\" /\u003e\n* ### Paket CLI \n      paket add fpprocess --version 1.1.1\n* ### Script \u0026 Interactive\n      #r \"nuget: fpprocess, 1.1.1\"\n* ### Cake\n      // Install fpprocess as a Cake Addin\n      #addin nuget:?package=fpprocess\u0026version=1.1.1\n\n      // Install fpprocess as a Cake Tool\n      #tool nuget:?package=fpprocess\u0026version=1.1.1\n* ### Github Package   \n      pip install git+git://github.com/Papishushi/fpprocess.git\n## DIY Compilation\n* Clone the repo \n\n      git clone git@github.com:Papishushi/fpprocess.git\n* Open the .sln on VS or use dotnet CLI to build the project\n\n      dotnet build --configuration Release fpprocess.sln\n* Get the final compiled binaries on the directory ***bin\\\\Release\\net6.0-windows10.0.22000.0\\\\***\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpapishushi%2Ffpprocess","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpapishushi%2Ffpprocess","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpapishushi%2Ffpprocess/lists"}