From d95cbbb4c4696d4dbfbbb2510ef0361c3674e060 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 28 Oct 2022 08:17:28 +0200 Subject: [PATCH 1/3] Update FAQ.md --- Docs/FAQ.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Docs/FAQ.md b/Docs/FAQ.md index 8b7e723e..8e030353 100644 --- a/Docs/FAQ.md +++ b/Docs/FAQ.md @@ -12,16 +12,16 @@ Why use PowerShell? ✔️ it's **cross-platform** - available for Linux, Mac OS and Windows -✔️ it's **open-source and free** - see the Github repository at https://github.com/PowerShell/PowerShell +✔️ it's **open-source and free** - see the Github repository at: https://github.com/PowerShell/PowerShell -✔️ it's **easy to learn** - see the tutorial for beginners at https://www.guru99.com/powershell-tutorial.html +✔️ it's **easy to learn** - see the tutorial for beginners at: https://www.guru99.com/powershell-tutorial.html -✔️ it's **fully documented** - see the official PowerShell documentation at https://docs.microsoft.com/en-us/powershell/ +✔️ it's **fully documented** - see the official PowerShell documentation at: https://docs.microsoft.com/en-us/powershell/ How to get PowerShell? ---------------------- -* **On Windows** PowerShell is preinstalled. **However,** the default execution policy is "restricted" which disallows the execution of scripts! To change this, open the *Windows PowerShell (Administrator)* console and enter: +* **On Windows** PowerShell is preinstalled. **However,** the execution policy is 'restricted' by default! To allow script execution: open the *Windows PowerShell (Administrator)* console and enter: ``` PS> Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope CurrentUser ``` From 85e05a5a7092df7c4a2032b2760ea4deeeb8ba8d Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 28 Oct 2022 08:19:45 +0200 Subject: [PATCH 2/3] Update FAQ.md --- Docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/FAQ.md b/Docs/FAQ.md index 8e030353..e305abae 100644 --- a/Docs/FAQ.md +++ b/Docs/FAQ.md @@ -16,7 +16,7 @@ Why use PowerShell? ✔️ it's **easy to learn** - see the tutorial for beginners at: https://www.guru99.com/powershell-tutorial.html -✔️ it's **fully documented** - see the official PowerShell documentation at: https://docs.microsoft.com/en-us/powershell/ +✔️ it's **fully documented** - see the PowerShell documentation at: https://docs.microsoft.com/en-us/powershell/ How to get PowerShell? From 0b0d2498ca83d1cc8acc8b4ad1ee89af9247f170 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 28 Oct 2022 08:23:44 +0200 Subject: [PATCH 3/3] Update FAQ.md --- Docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/FAQ.md b/Docs/FAQ.md index e305abae..9eb1f6a1 100644 --- a/Docs/FAQ.md +++ b/Docs/FAQ.md @@ -42,7 +42,7 @@ How to get the PowerShell Scripts? How to execute PowerShell Scripts? ---------------------------------- 1. In the Windows desktop: right-click the script and select: *Execute with PowerShell* -2. In a command-line interface (CLI, e.g. *Windows Terminal*, either local or remote via SSH) by typing: `./NAME_OF_SCRIPT`. +2. In a command-line interface (CLI, e.g. *Windows Terminal*, either local or remote via SSH) by typing: `./`. 3. By connecting a context menu item with a script. 4. By voice control, e.g. see repo [talk2windows](https://github.com/fleschutz/talk2windows) for more information. 5. By using automation software, e.g. [Jenkins](https://www.jenkins.io).