tldr/pages.fr/common/powershell.md

33 lines
924 B
Markdown
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# powershell
> Interface en ligne de commande et langage de script spécialement conçu pour l'administration système.
> Plus d'informations : <https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pwsh>.
- Démarre une session Windows PowerShell dans une fenêtre d'invite de commande :
`powershell`
- Charge un fichier de console PowerShell spécifique :
`powershell -PSConsoleFile {{chemin/vers/fichier}}`
- Démarre une session avec une version spécifiée de PowerShell :
`powershell -Version {{version}}`
- Empêche linterface système de se fermer après avoir exécuté les commandes de démarrage :
`powershell -NoExit`
- Décrive le format des données envoyées à PowerShell :
`powershell -InputFormat {{Texte|XML}}`
- Détermine comment la sortie de PowerShell est formatée :
`powershell -OutputFormat {{Texte|XML}}`
- Affiche l'aide :
`powershell -Help`