mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-28 19:03:49 +01:00
16 lines
343 B
PowerShell
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
|