Update FAQ.md

This commit is contained in:
Markus Fleschutz 2022-12-29 21:02:05 +01:00 committed by GitHub
parent 7a8c103db1
commit f7f409af51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,15 +21,15 @@ Why use PowerShell?
How to install PowerShell?
--------------------------
**On Windows** it's preinstalled, **but** the execution policy is *restricted* by default! To change this: open the *Windows PowerShell (Administrator)* console and enter:
▶️ **On Windows** it's preinstalled, **but** the script execution policy is by default *restricted* (forbidden)! To change this: open the *Windows PowerShell (Administrator)* console and enter:
```
PS> Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope CurrentUser
```
NOTE: in case this fails then the group policy object (GPO) settings of your organization disallows any changes. Contact your system administrator for help.
NOTE: the group policy object (GPO) settings of your organization might disallow changes. In that case contact your system administrator for help.
**On CentOS, Debian, Docker, Fedora, macOS, openSUSE, Red Hat, Ubuntu** visit https://github.com/PowerShell/PowerShell for installation.
▶️ **On CentOS, Debian, Docker, Fedora, macOS, openSUSE, Red Hat, Ubuntu** visit https://github.com/PowerShell/PowerShell for installation.
**On Linux supporting Snaps** install PowerShell by executing:
▶️ **On Linux supporting Snaps** install PowerShell by executing:
```
$ snap install PowerShell
$ ln -s /snap/bin/pwsh /usr/bin/pwsh