1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-01 06:35:30 +02:00
tldr/pages/common/pwsh.md
2022-10-04 23:06:23 +08:00

20 lines
487 B
Markdown

# pwsh
> PowerShell Core is a cross-platform automation and configuration tool/framework.
> More information: <https://learn.microsoft.com/powershell/>.
- Start an instance of PowerShell:
`pwsh`
- Execute a script and then exit:
`pwsh -File {{path/to/file.ps1}}`
- Set the execution policy for the current session:
`pwsh -ExecutionPolicy {{AllSigned|Bypass|Default|RemoteSigned|Restricted|Undefined|Unrestricted}}`
- Execute a command and then exit:
`pwsh -Command {{command}}`