Add open-notepad-website.ps1

This commit is contained in:
Markus Fleschutz
2021-11-25 10:09:03 +01:00
parent bd9c1525f6
commit ee61617a90
2 changed files with 22 additions and 8 deletions

View File

@ -0,0 +1,15 @@
<#
.SYNOPSIS
Opens a Notepad website
.DESCRIPTION
This script launches the Web browser with a Notepad website.
.EXAMPLE
PS> ./open-notepad-website
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://notepad.js.org/"
exit 0 # success