mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-01-23 14:18:38 +01:00
Add 2 scripts
This commit is contained in:
parent
a966cf086f
commit
3da0c69477
15
Scripts/open-distro-watch.ps1
Normal file
15
Scripts/open-distro-watch.ps1
Normal file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens the DistroWatch website
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the DistroWatch website.
|
||||
.EXAMPLE
|
||||
PS> ./open-distro-watch
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-browser.ps1" "https://distrowatch.com/"
|
||||
exit 0 # success
|
15
Scripts/open-whats-app.ps1
Normal file
15
Scripts/open-whats-app.ps1
Normal file
@ -0,0 +1,15 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Opens the WhatsApp website
|
||||
.DESCRIPTION
|
||||
This script launches the Web browser with the WhatsApp website.
|
||||
.EXAMPLE
|
||||
PS> ./open-whats-app
|
||||
.NOTES
|
||||
Author: Markus Fleschutz · License: CC0
|
||||
.LINK
|
||||
https://github.com/fleschutz/PowerShell
|
||||
#>
|
||||
|
||||
& "$PSScriptRoot/open-browser.ps1" "https://www.whatsapp.com/"
|
||||
exit 0 # success
|
Loading…
Reference in New Issue
Block a user