*: fix errors reported by languagetool (#6069)

This commit is contained in:
Seth Falco
2021-08-15 19:59:09 +02:00
committed by GitHub
parent 3fbefc8b77
commit 3e4c519004
281 changed files with 433 additions and 429 deletions

View File

@@ -4,7 +4,7 @@
> Event IDs can be any number between 1 and 1000.
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/eventcreate>.
- Create a new event with a given id (1-1000) in the log:
- Create a new event with a given ID (1-1000) in the log:
`eventcreate /t {{success|error|warning|information}} /id {{id}} /d "{{message}}"`

View File

@@ -7,7 +7,7 @@
`pathping {{hostname}}`
- Do not perform reverse lookup of ip-address to hostname:
- Do not perform reverse lookup of IP address to hostname:
`pathping {{hostname}} -n`

View File

@@ -20,9 +20,9 @@
`robocopy {{path/to/source}} {{path/to/destination}} /E /XO`
- List all files 50 MBytes or larger in size instead of copying them:
- List all files 50 MB or larger instead of copying them:
`robocopy {{path/to/source}} {{path/to/destination}} /MIN:52428800 /L`
`robocopy {{path/to/source}} {{path/to/destination}} /MIN:{{52428800}} /L`
- Allow resuming if network connection is lost and limit retries to 5 and wait time to 15 sec:

View File

@@ -1,9 +1,9 @@
# taskkill
> Terminate a process by its process id or name.
> Terminate a process by its process ID or name.
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/taskkill>.
- Terminate a process by its id:
- Terminate a process by its ID:
`taskkill /pid {{process_id}}`

View File

@@ -19,6 +19,6 @@
`whoami /upn`
- Display the logon id of the current user:
- Display the logon ID of the current user:
`whoami /logonid`