PowerShell/Scripts/open-discord-website.ps1
2021-12-11 18:23:56 +01:00

16 lines
340 B
PowerShell

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