pages.nl/*: add and update pages (#11397)

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Sebastiaan Speck
2023-11-07 14:27:25 +01:00
committed by GitHub
parent 53ecd46a37
commit 5788b56f69
87 changed files with 1126 additions and 4 deletions

View File

@@ -0,0 +1,37 @@
# powershell
> Command-line shell en scripting taal specifiek ontworpen voor systeemadministratie.
> Zie ook: `pwsh`.
> Meer informatie: <https://learn.microsoft.com/windows-server/administration/windows-commands/powershell>.
- Start een interactieve shell sessie:
`powershell`
- Start een interactieve shell sessie zonder het laden van startup configuraties:
`powershell -NoProfile`
- Voer specifieke commando's uit:
`powershell -Command "{{echo 'powershell is 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 uitgaat na het uitvoeren van startup commando's:
`powershell -NoExit`
- Beschrijf het formaat van gegevens die naar PowerShell zijn verzonden:
`powershell -InputFormat {{Text|XML}}`
- Bepaal hoe een output van PowerShell wordt opgemaakt:
`powershell -OutputFormat {{Text|XML}}`