Skip to content

Commit

Permalink
update to readme and help
Browse files Browse the repository at this point in the history
  • Loading branch information
lowleveldesign committed Oct 14, 2021
1 parent 1c72a6a commit 0ec0584
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ProcessGovernor/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static int Main(string[] args)
{ "debugger", "Internal - do not use.",
v => debug = v != null },
{ "q|quiet", "Do not show procgov messages.", v => quiet = v != null },
{ "nowait", "Does not wait for the target process(es) to complete.", v => nowait = v != null },
{ "nowait", "Does not wait for the target process(es) to exit.", v => nowait = v != null },
{ "v|verbose", "Show verbose messages in the console.", v => {
if (v != null)
{
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@

This application allows you to set constraints on a process. It uses [a job object](https://msdn.microsoft.com/en-us/library/windows/desktop/ms684161(v=vs.85).aspx) for this purpose.

Procgov requires .NET 4.6.2 to run and you may download the latest version binaries from the [release page](https://github.com/lowleveldesign/process-governor/releases) or install it with [Chocolatey](https://chocolatey.org/): `choco install procgov`.
Procgov requires .NET 4.6.2 to run and you may download the latest version binaries from the [release page](https://github.com/lowleveldesign/process-governor/releases) or install it with [Chocolatey](https://chocolatey.org/):

**REMEMBER to always use procgov with the same bitness as your application**.
```
choco install procgov
```

:warning: Always use procgov executable with the same bitness as your application.

The available options are:

Expand Down Expand Up @@ -63,7 +67,7 @@ Options:
--debugger Internal - do not use.
-q, --quiet Do not show procgov messages.
--nowait Does not wait for the target process(es) to
complete.
exit.
-v, --verbose Show verbose messages in the console.
-h, --help Show this message and exit
-? Show this message and exit
Expand Down

0 comments on commit 0ec0584

Please sign in to comment.