diff --git a/Docs/FAQ.md b/Docs/FAQ.md index a33a8b2c..7b01837c 100644 --- a/Docs/FAQ.md +++ b/Docs/FAQ.md @@ -129,7 +129,7 @@ Want to use the PowerShell scripts everywhere on the command-line? Then you need **Good PowerShell scripts are both user-friendly and platform-independent. As a starting point I recommend the following:** -* Use the `-.ps1` scheme for filenames (e.g. `list-news.ps1`). Approved verbs can be found here: [https://learn.microsoft.com/en-us/powershell/scripting/developer/cmdlet/approved-verbs-for-windows-powershell-commands](https://learn.microsoft.com/en-us/powershell/scripting/developer/cmdlet/approved-verbs-for-windows-powershell-commands) +* Use the `-.ps1` scheme for filenames (e.g. *list-news.ps1*). Approved verbs can be found here: [https://learn.microsoft.com/en-us/powershell/scripting/developer/cmdlet/approved-verbs-for-windows-powershell-commands](https://learn.microsoft.com/en-us/powershell/scripting/developer/cmdlet/approved-verbs-for-windows-powershell-commands) * Use **UTF-8 BOM** encoding to support Unicode characters in the script. * Add a **comment-based help** at the beginning with: `.SYNOPSIS`, `.DESCRIPTION`, `.PARAMETER`, `.EXAMPLE`, `.LINK`, and `.NOTES`. * Check the **requirements** for the script, e.g. `#Requires -RunAsAdministrator`, or `#Requires -Version 3`