Improve the .Example section

This commit is contained in:
Markus Fleschutz
2023-08-06 21:35:36 +02:00
parent 18e4f20852
commit fa9d43b715
244 changed files with 457 additions and 433 deletions

View File

@ -4,7 +4,7 @@
.DESCRIPTION
This PowerShell script installs the Microsoft Edge Browser from the Microsoft Store.
.EXAMPLE
PS> ./install-edge
PS> ./install-edge.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
@ -12,7 +12,7 @@
#>
try {
"Installing Edge, please wait..."
"Installing Microsoft Edge, please wait..."
& winget install "Microsoft Edge Browser" --source msstore --accept-package-agreements --accept-source-agreements
if ($lastExitCode -ne "0") { throw "'winget install' failed" }