mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-07-01 05:00:06 +02:00
Add 2 websites
This commit is contained in:
15
Scripts/open-ipfs-website.ps1
Normal file
15
Scripts/open-ipfs-website.ps1
Normal file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens the IPFS website
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the IPFS website.
|
||||
.EXAMPLE
|
||||
PS> ./open-ipfs-website
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://ipfs.io/"
|
||||
exit 0 # success
|
15
Scripts/open-snap-store-website.ps1
Normal file
15
Scripts/open-snap-store-website.ps1
Normal file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens the Snap Store website
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the Snap Store website.
|
||||
.EXAMPLE
|
||||
PS> ./open-snap-store-website
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-default-browser.ps1" "https://snapcraft.io/store"
|
||||
exit 0 # success
|
Reference in New Issue
Block a user