From 8258e56563c042fb62f93bd18020db9b3a974a63 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 15 May 2024 13:48:58 +0200 Subject: [PATCH 1/3] Update FAQ.md --- docs/FAQ.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/FAQ.md b/docs/FAQ.md index c8189927..d5a95fd8 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -129,6 +129,11 @@ Want to use the PowerShell scripts everywhere on the command-line? Then you need * or simply your **favorite text editor** as an alternative. +
How to remove the banner message in PowerShell? + +* Quite simple: just start powershell.exe with option '-nologo'. +
+
How to write good PowerShell scripts? **Good PowerShell scripts are both user-friendly and platform-independent. As a starting point I recommend the following:** From 568707d547ec4ebd7e8fd063e181e7b241b93795 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 15 May 2024 13:49:48 +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 d5a95fd8..d5ab7ecb 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -131,7 +131,7 @@ Want to use the PowerShell scripts everywhere on the command-line? Then you need
How to remove the banner message in PowerShell? -* Quite simple: just start powershell.exe with option '-nologo'. +* **Quite simple:** just start powershell.exe with option '-nologo'.
How to write good PowerShell scripts? From 036c9a39daba2c590b6c26f4ea2314b227d33752 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Wed, 15 May 2024 13:54:09 +0200 Subject: [PATCH 3/3] 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 d5ab7ecb..3ed7a1d2 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -131,7 +131,8 @@ Want to use the PowerShell scripts everywhere on the command-line? Then you need
How to remove the banner message in PowerShell? -* **Quite simple:** just start powershell.exe with option '-nologo'. +* **In general:** start powershell.exe with option '-nologo'. +* **For Windows Terminal:** open Settings > Profiles > Windows PowerShell > Command line and add " -nologo".
How to write good PowerShell scripts?