Add open-ufa-website.ps1 and open-unsplash-website.ps1

This commit is contained in:
Markus Fleschutz 2021-11-15 13:25:27 +01:00
parent 243a2cdef5
commit 3978a8d1a6
3 changed files with 31 additions and 1 deletions

View File

@ -4,7 +4,7 @@
.DESCRIPTION
This script launches the Web browser with the Pixabay website.
.EXAMPLE
PS> ./open-pixabay
PS> ./open-pixabay-website
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK

View File

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

View File

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