From e102dc28c05b3c679d90be1953f9a0ea8b2bc367 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Tue, 1 Jul 2025 16:42:04 +0200 Subject: [PATCH] Update FAQ.md --- docs/FAQ.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index 24a3924c..455faec3 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -53,10 +53,11 @@
Which PowerShell version should be used? -* **Windows PowerShell 2.0** (or lower) is out-dated and will be removed in newer Windows releases. +* **PowerShell 2.0** (or lower) is out-dated and will be removed in newer Windows releases. * **PowerShell 5.1** is preinstalled on Windows 10 or 11. * **PowerShell 7.5.2** is the very latest (as of July 2025), but needs to be installed manually. * **Version history** is at: https://github.com/PowerShell/PowerShell/releases +* **NOTE:** scripts should specify the required version, e.g.: `#Requires -Version 5`. This also helps to identify out-dated scripts.