mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-05-30 15:08:49 +02:00
Rename to open-default-browser.ps1
This commit is contained in:
parent
2e5be6ac68
commit
af8f300a40
@ -21,7 +21,7 @@ More supported voice commands are:
|
|||||||
Computer, open `name` browser
|
Computer, open `name` browser
|
||||||
--------------------------------
|
--------------------------------
|
||||||
* this launches the given Web browser.
|
* this launches the given Web browser.
|
||||||
* replace `name` by: "Chrome", "Edge", or "Firefox".
|
* replace `name` by: "Chrome", "default", "Edge", or "Firefox".
|
||||||
* when finished use: *Computer, close `name` browser* to stop the Web browser.
|
* when finished use: *Computer, close `name` browser* to stop the Web browser.
|
||||||
|
|
||||||
|
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/android/find"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/android/find"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.accuweather.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.accuweather.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.airbnb.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.airbnb.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,4 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.amazon.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.amazon.com"
|
||||||
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.baidu.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.baidu.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.bbc.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.bbc.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://bitbucket.org"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://bitbucket.org"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.booking.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.booking.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.cdc.gov/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.cdc.gov/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -13,14 +13,10 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param([string]$URL = "")
|
param([string]$URL = "http://www.fleschutz.de")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if ("$URL" -ne "") {
|
start-process chrome.exe "$URL"
|
||||||
start-process chrome.exe "$URL"
|
|
||||||
} else {
|
|
||||||
start-process chrome.exe
|
|
||||||
}
|
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.cia.gov/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.cia.gov/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.cnn.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.cnn.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.deepl.com/translator"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.deepl.com/translator"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the default Web browser
|
Opens the default browser
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script launches the default Web browser, optional with a given URL.
|
This script launches the default Web browser, optional with a given URL.
|
||||||
.PARAMETER URL
|
.PARAMETER URL
|
||||||
Specifies the URL
|
Specifies the URL
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-browser
|
PS> ./open-default-browser
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://distrowatch.com/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://distrowatch.com/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://duckduckgo.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://duckduckgo.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.ebay.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.ebay.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://e.ggtimer.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://e.ggtimer.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.facebook.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.facebook.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.fbi.gov"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.fbi.gov"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -4,12 +4,12 @@
|
|||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script launches the Web browser with a fire place website.
|
This script launches the Web browser with a fire place website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-fire-play
|
PS> ./open-fire-place
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://freefireplaces.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://freefireplaces.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -6,21 +6,17 @@
|
|||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-firefox-browser
|
PS> ./open-firefox-browser
|
||||||
.PARAMETER URL
|
.PARAMETER URL
|
||||||
Specifies an optional URL
|
Specifies an URL
|
||||||
.NOTES
|
.NOTES
|
||||||
Author: Markus Fleschutz · License: CC0
|
Author: Markus Fleschutz · License: CC0
|
||||||
.LINK
|
.LINK
|
||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
param([string]$URL = "")
|
param([string]$URL = "http://www.fleschutz.de")
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if ("$URL" -ne "") {
|
start-process firefox.exe "$URL"
|
||||||
start-process firefox.exe "$URL"
|
|
||||||
} else {
|
|
||||||
start-process firefox.exe
|
|
||||||
}
|
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
} catch {
|
||||||
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.flightradar24.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.flightradar24.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://foursquare.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://foursquare.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "http://fritz.box"
|
& "$PSScriptRoot/open-default-browser.ps1" "http://fritz.box"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "http://fritz.repeater"
|
& "$PSScriptRoot/open-default-browser.ps1" "http://fritz.repeater"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://github.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://github.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://books.google.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://books.google.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://calendar.google.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://calendar.google.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://contacts.google.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://contacts.google.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://docs.google.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://docs.google.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://earth.google.com/web/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://earth.google.com/web/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://mail.google.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://mail.google.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://news.google.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://news.google.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://photos.google.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://photos.google.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://play.google.com/store"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://play.google.com/store"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://google.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://google.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://stadia.google.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://stadia.google.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://translate.google.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://translate.google.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.holidaycheck.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.holidaycheck.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.hrworks.de"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.hrworks.de"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.instagram.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.instagram.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://archive.org"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://archive.org"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://meet.jit.si/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://meet.jit.si/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.bing.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.bing.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.microsoft.com/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.microsoft.com/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.nasa.gov"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.nasa.gov"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.nbc.com/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.nbc.com/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://portal.office.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://portal.office.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.outdooractive.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.outdooractive.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.pinterest.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.pinterest.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://pixabay.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://pixabay.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://slashdot.org"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://slashdot.org"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.spaceweather.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.spaceweather.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://speed.cloudflare.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://speed.cloudflare.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://stackoverflow.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://stackoverflow.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.startpage.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.startpage.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.openstreetmap.org"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.openstreetmap.org"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.tesla.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.tesla.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.tiktok.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.tiktok.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,10 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
try {
|
& "$PSScriptRoot/open-default-browser.ps1" "https://track.toggl.com"
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://track.toggl.com"
|
exit 0 # success
|
||||||
exit 0 # success
|
|
||||||
} catch {
|
|
||||||
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://opentopomap.org"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://opentopomap.org"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.twitter.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.twitter.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.ufainc.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.ufainc.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://unsplash.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://unsplash.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.walmart.com/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.walmart.com/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.whatsapp.com/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.whatsapp.com/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.whitehouse.gov"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.whitehouse.gov"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.wikipedia.org"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.wikipedia.org"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.windy.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.windy.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.wired.com/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.wired.com/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.wolframalpha.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.wolframalpha.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.reuters.com/news/archive/worldNews"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.reuters.com/news/archive/worldNews"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.yahoo.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.yahoo.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.youtube.com"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.youtube.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/absolutechillout"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/absolutechillout"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://tunein.com/radio/Radio-Arabella-Mnchen-1052-s119032/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://tunein.com/radio/Radio-Arabella-Mnchen-1052-s119032/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/Blue_100.7"
|
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Blue_100.7"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/RADIO_BOB_BOBs_Alternative"
|
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/RADIO_BOB_BOBs_Alternative"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/m1fmclubmix"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/m1fmclubmix"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/costadelmar"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/costadelmar"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://tunein.com/radio/Dance-FM-s303095/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://tunein.com/radio/Dance-FM-s303095/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/N_Joy"
|
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/N_Joy"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/ffn"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/ffn"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/Radio_Galaxy_Rosenheim"
|
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Radio_Galaxy_Rosenheim"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/Radio_Gong"
|
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Radio_Gong"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://tunein.com/radio/Ibiza-Live-Radio-s203278/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://tunein.com/radio/Ibiza-Live-Radio-s203278/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://tunein.com/radio/JAM-FM-New-Music-Radio-s136277/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://tunein.com/radio/JAM-FM-New-Music-Radio-s136277/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/radiokisskiss"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/radiokisskiss"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/malibufm"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/malibufm"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://tunein.com/radio/Radio-Paloma-s97169/"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://tunein.com/radio/Radio-Paloma-s97169/"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "http://streema.com/radios/play/Radio_7"
|
& "$PSScriptRoot/open-default-browser.ps1" "http://streema.com/radios/play/Radio_7"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.radio.de/s/youfm"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.radio.de/s/youfm"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/place/Amsterdam"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Amsterdam"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/place/Atlanta"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Atlanta"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/place/Barcelona"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Barcelona"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/place/Berlin"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Berlin"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
@ -11,5 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.google.com/maps/place/Boston"
|
& "$PSScriptRoot/open-default-browser.ps1" "https://www.google.com/maps/place/Boston"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user