mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 14:22:07 +02:00
powershell: add Dutch translation (#13685)
This commit is contained in:
parent
17ff246fc3
commit
c1908ff3b4
1 changed files with 37 additions and 0 deletions
37
pages.nl/windows/powershell.md
Normal file
37
pages.nl/windows/powershell.md
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
# powershell
|
||||||
|
|
||||||
|
> Command-line shell en scripttaal, ontworpen voor systeembeheer.
|
||||||
|
> Deze opdracht verwijst naar PowerShell versie 5.1 en lager (ook bekend als legacy Windows PowerShell). Voor de nieuwere, platformonafhankelijke versie van PowerShell (ook bekend als PowerShell Core), gebruik `pwsh` in plaats van `powershell`.
|
||||||
|
> Meer informatie: <https://learn.microsoft.com/windows-server/administration/windows-commands/powershell>.
|
||||||
|
|
||||||
|
- Start een interactieve shellsessie:
|
||||||
|
|
||||||
|
`powershell`
|
||||||
|
|
||||||
|
- Start een interactieve shellsessie zonder opstartconfiguraties te laden:
|
||||||
|
|
||||||
|
`powershell -NoProfile`
|
||||||
|
|
||||||
|
- Voer specifieke commando's uit:
|
||||||
|
|
||||||
|
`powershell -Command "{{echo 'powershell wordt uitgevoerd'}}"`
|
||||||
|
|
||||||
|
- Voer een specifiek script uit:
|
||||||
|
|
||||||
|
`powershell -File {{pad/naar/script.ps1}}`
|
||||||
|
|
||||||
|
- Start een sessie met een specifieke versie van PowerShell:
|
||||||
|
|
||||||
|
`powershell -Version {{versie}}`
|
||||||
|
|
||||||
|
- Voorkom dat een shell afsluit na het uitvoeren van opstartcommando's:
|
||||||
|
|
||||||
|
`powershell -NoExit`
|
||||||
|
|
||||||
|
- Beschrijf het formaat van gegevens die naar PowerShell worden verzonden:
|
||||||
|
|
||||||
|
`powershell -InputFormat {{Text|XML}}`
|
||||||
|
|
||||||
|
- Bepaal hoe een output van PowerShell wordt opgemaakt:
|
||||||
|
|
||||||
|
`powershell -OutputFormat {{Text|XML}}`
|
Loading…
Add table
Reference in a new issue