1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 08:42:08 +02:00

powershell: add Dutch translation (#13685)

This commit is contained in:
Sebastiaan Speck 2024-09-21 19:02:23 +02:00 committed by GitHub
parent 17ff246fc3
commit c1908ff3b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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}}`