From 39258d67c8eccbfa09a410acedf6775676283d27 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sun, 4 Sep 2022 11:35:04 +0200 Subject: [PATCH] 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 c4ce7d09..0910b735 100644 --- a/Docs/FAQ.md +++ b/Docs/FAQ.md @@ -86,7 +86,7 @@ How to write good PowerShell scripts? Good PowerShell scripts are user-friendly and platform-independent. As a guideline follow these rules, please: 1. Use the `-.ps1` scheme to name the script. -2. Use UTF-8 BOM encoding to support Unicode characters in the script. +2. Use *UTF-8 BOM* encoding to support Unicode characters in the script. 3. Set *execute* file permissions for Linux: `chmod a+rx ` 4. Add a comment-based help at the beginning with synopsis, description, parameters, link, author, and license. 5. Check the requirements for the script, e.g. `#Requires -RunAsAdministrator`, or `#Requires -Version 3`