PowerShell/Scripts/open-wired-website.ps1
2021-11-23 07:45:50 +01:00

16 lines
336 B
PowerShell

<#
.SYNOPSIS
Opens the WIRED website
.DESCRIPTION
This script launches the Web browser with the WIRED website.
.EXAMPLE
PS> ./open-wired-website
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
& "$PSScriptRoot/open-default-browser.ps1" "https://www.wired.com/"
exit 0 # success