PowerShell/Scripts/open-dropbox-website.ps1
2021-11-30 15:51:03 +01:00

16 lines
343 B
PowerShell

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