From 006624430b4787eecf47ffe5f62d4b6e1753afea Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Tue, 10 May 2022 07:20:25 +0200 Subject: [PATCH] Update FAQ.md --- Docs/FAQ.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Docs/FAQ.md b/Docs/FAQ.md index 81e2f150..86bda117 100644 --- a/Docs/FAQ.md +++ b/Docs/FAQ.md @@ -21,9 +21,9 @@ Why use PowerShell? How to get PowerShell? ---------------------- -* **Windows 7/Server 2008 R2 and newer** already have PowerShell preinstalled (e.g. PowerShell 5.1 on Windows 10). However, script execution is **disallowed by default** (execution policy is "restricted"). To enable this, enter as administrator: +* **Windows 7/Server 2008 R2 and newer** already have PowerShell preinstalled (e.g. PowerShell 5.1 on Windows 10). However, script execution is **disallowed by default** (execution policy is "restricted"). To enable it: open the "Windows PowerShell (Administrator)" console and enter: ``` - PS> Set-ExecutionPolicy RemoteSigned + PS> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser ``` * **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: