mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-22 18:08:18 +02:00
Add open-tiktok-website.ps1
This commit is contained in:
parent
d95c984d64
commit
2e5be6ac68
@ -56,7 +56,7 @@ Computer, open `name` settings
|
|||||||
Computer, open `name` website
|
Computer, open `name` website
|
||||||
-----------------------------
|
-----------------------------
|
||||||
* this launches the default Web browser with the given website.
|
* this launches the default Web browser with the given website.
|
||||||
* replace `name` by: "Amazon", "Baidu", "BBC", "CDC", "CIA", "CNN", "eBay", "Facebook", "FBI", "GitHub", "Instagram", "Microsoft", "NASA", "NBC", "Pinterest", "Pixabay", "Slashdot", "Tesla", "Twitter", "UFA", "Unsplash", "Walmart", "WhatsApp", "White House", "Wikipedia", "Wired", or "Yahoo".
|
* replace `name` by: "Amazon", "Baidu", "BBC", "CDC", "CIA", "CNN", "eBay", "Facebook", "FBI", "GitHub", "Instagram", "Microsoft", "NASA", "NBC", "Pinterest", "Pixabay", "Slashdot", "Tesla", "TikTok", "Twitter", "UFA", "Unsplash", "Walmart", "WhatsApp", "White House", "Wikipedia", "Wired", or "Yahoo".
|
||||||
* when finished see "Computer, close `name` browser" to stop the Web browser.
|
* when finished see "Computer, close `name` browser" to stop the Web browser.
|
||||||
|
|
||||||
|
|
||||||
|
15
Scripts/open-tiktok-website.ps1
Executable file
15
Scripts/open-tiktok-website.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens the TikTok website
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with the TikTok website.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-tiktop-website
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.tiktok.com"
|
||||||
|
exit 0 # success
|
Loading…
Reference in New Issue
Block a user