PowerShell/Scripts/open-note-pad-website.ps1

16 lines
344 B
PowerShell
Raw Normal View History

2021-11-25 10:09:03 +01:00
<#
.SYNOPSIS
2021-11-29 16:25:01 +01:00
Opens the Notepad website
2021-11-25 10:09:03 +01:00
.DESCRIPTION
2021-11-29 16:25:01 +01:00
This script launches the Web browser with the Notepad website.
2021-11-25 10:09:03 +01:00
.EXAMPLE
2021-11-29 16:25:01 +01:00
PS> ./open-note-pad-website
2021-11-25 10:09:03 +01:00
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://notepad.js.org/"
exit 0 # success