mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-24 19:08:27 +02:00
Add open-wikipedia.ps1
This commit is contained in:
parent
84f030a0ef
commit
4c8f0c90d0
@ -192,6 +192,7 @@ open-system-settings.ps1, Opens the system settings of Windows
|
|||||||
open-task-manager.ps1, Starts the Task Manager
|
open-task-manager.ps1, Starts the Task Manager
|
||||||
open-toggl-track.ps1, Opens Toggl Track
|
open-toggl-track.ps1, Opens Toggl Track
|
||||||
open-videos-folder.ps1, Opens the user's videos folder
|
open-videos-folder.ps1, Opens the user's videos folder
|
||||||
|
open-wikipedia.ps1, Opens Wikipedia's website
|
||||||
open-youtube.ps1, Opens YouTube.com
|
open-youtube.ps1, Opens YouTube.com
|
||||||
pick-commit.ps1, Cherry-picks a Git commit into multiple branches
|
pick-commit.ps1, Cherry-picks a Git commit into multiple branches
|
||||||
play-beep.ps1, Plays a beep sound
|
play-beep.ps1, Plays a beep sound
|
||||||
|
Can't render this file because it has a wrong number of fields in line 95.
|
@ -1,6 +1,6 @@
|
|||||||
## open-amazon.ps1 - Opens Amazon's website
|
## open-amazon.ps1 - Opens Amazon's website
|
||||||
|
|
||||||
This script starts the Web browser and opens the Amazon website.
|
This script launches the Web browser with the Amazon website.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-browser.ps1 - Opens the default Web browser
|
## open-browser.ps1 - Opens the default Web browser
|
||||||
|
|
||||||
This script opens the default Web browser, optional with given URL.
|
This script launches the default Web browser, optional with a given URL.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-c-drive.ps1 - Opens the C: drive folder
|
## open-c-drive.ps1 - Opens the C: drive folder
|
||||||
|
|
||||||
This script starts the File Explorer showing the C: drive folder.
|
This script launches the File Explorer showing the C: drive folder.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-calculator.ps1 - Starts the calculator app
|
## open-calculator.ps1 - Starts the calculator app
|
||||||
|
|
||||||
This script starts the calculator application.
|
This script launches the calculator application.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-downloads-folder.ps1 - Opens the user's downloads folder
|
## open-downloads-folder.ps1 - Opens the user's downloads folder
|
||||||
|
|
||||||
This script starts the File Explorer and shows the user's downloads folder.
|
This script launches the File Explorer showing the user's downloads folder.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-dropbox-folder.ps1 - Opens the user's Dropbox folder
|
## open-dropbox-folder.ps1 - Opens the user's Dropbox folder
|
||||||
|
|
||||||
This script starts the File Explorer and shows the user's Dropbox folder.
|
This script launches the File and showing the user's Dropbox folder.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-edge.ps1 - Starts Microsoft Edge
|
## open-edge.ps1 - Starts Microsoft Edge
|
||||||
|
|
||||||
This script starts the Microsoft Edge Web browser.
|
This script launches the Microsoft Edge Web browser.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-email-client.ps1 - Starts the default email client
|
## open-email-client.ps1 - Starts the default email client
|
||||||
|
|
||||||
This script starts the default email client.
|
This script launches the default email client.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-facebook.ps1 - Opens Facebook's website
|
## open-facebook.ps1 - Opens Facebook's website
|
||||||
|
|
||||||
This script starts the Web browser with Facebook's website.
|
This script launches the Web browser with Facebook's website.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-file-explorer.ps1 - Starts the File Explorer
|
## open-file-explorer.ps1 - Starts the File Explorer
|
||||||
|
|
||||||
This script starts the File Explorer.
|
This script launches the File Explorer.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-fritz-box.ps1 - Opens FRITZ!Box's Web interface
|
## open-fritz-box.ps1 - Opens FRITZ!Box's Web interface
|
||||||
|
|
||||||
This script starts the Web browser with FRITZ!Box's Web interface.
|
This script launches the Web browser with FRITZ!Box's Web interface.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-github.ps1 - Opens GitHub's website
|
## open-github.ps1 - Opens GitHub's website
|
||||||
|
|
||||||
This script starts the Web browser with GitHub's website.
|
This script launches the Web browser with the GitHub website.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-google-contacts.ps1 - Opens Google Contacts
|
## open-google-contacts.ps1 - Opens Google Contacts
|
||||||
|
|
||||||
This script starts the Web browser and opens Google Contacts.
|
This script launches the Web browser with Google Contacts website.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-google-earth.ps1 - Opens Google Earth
|
## open-google-earth.ps1 - Opens Google Earth
|
||||||
|
|
||||||
This script starts the Web browser and opens Google Earth
|
This script launches the Web browser with Google Earth's website.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-google-maps.ps1 - Opens Google Maps
|
## open-google-maps.ps1 - Opens Google Maps
|
||||||
|
|
||||||
This script starts the Web browser and opens Google Maps.
|
This script launches the Web browser with the Google Maps website.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-google-news.ps1 - Opens Google News
|
## open-google-news.ps1 - Opens Google News
|
||||||
|
|
||||||
This script starts the Web browser and opens Google News.
|
This script launches the Web browser with the Google News website.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-google-search.ps1 - Opens Google Search
|
## open-google-search.ps1 - Opens Google Search
|
||||||
|
|
||||||
This script starts the Web browser and opens Google Search
|
This script launches the Web browser with the Google Search website.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-google-translate.ps1 - Opens Google Translate
|
## open-google-translate.ps1 - Opens Google Translate
|
||||||
|
|
||||||
This script starts the Web browser and opens Google Translate.
|
This script launches the Web browser with the Google Translate website.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-home-folder.ps1 - Opens the home folder
|
## open-home-folder.ps1 - Opens the home folder
|
||||||
|
|
||||||
This script starts the File Explorer and shows the home folder.
|
This script launches the File Explorer with the user's home folder.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-microsoft-store.ps1 - Starts the Microsoft Store app
|
## open-microsoft-store.ps1 - Starts the Microsoft Store app
|
||||||
|
|
||||||
This script starts the Microsoft Store application.
|
This script launches the Microsoft Store application.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-music-folder.ps1 - Opens the music folder
|
## open-music-folder.ps1 - Opens the music folder
|
||||||
|
|
||||||
This script starts the File Explorer and shows the music folder.
|
This script launches the File Explorer with the user's music folder.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-netflix.ps1 - Starts the Netflix app
|
## open-netflix.ps1 - Starts the Netflix app
|
||||||
|
|
||||||
This script starts the Netflix application.
|
This script launches the Netflix application.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-notepad.ps1 - Starts Notepad
|
## open-notepad.ps1 - Starts Notepad
|
||||||
|
|
||||||
This script starts Notepad.
|
This script launches the Notepad application.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-onedrive-folder.ps1 - Opens the user's OneDrive folder
|
## open-onedrive-folder.ps1 - Opens the user's OneDrive folder
|
||||||
|
|
||||||
This script opens the user's OneDrive folder.
|
This script launches Microsoft OneDrive with the user's OneDrive folder.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-pictures-folder.ps1 - Opens the user's pictures folder
|
## open-pictures-folder.ps1 - Opens the user's pictures folder
|
||||||
|
|
||||||
This script starts the File Explorer and shows the user's pictures folder.
|
This script launches the File Explorer with the user's pictures folder.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-recycle-bin.ps1 - Opens the user's recycle bin folder
|
## open-recycle-bin.ps1 - Opens the user's recycle bin folder
|
||||||
|
|
||||||
This script starts the File Explorer and shows the user's recycle bin folder.
|
This script launches the File Explorer with the user's recycle bin folder.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-repos-folder.ps1 - Opens the Git repositories folder
|
## open-repos-folder.ps1 - Opens the Git repositories folder
|
||||||
|
|
||||||
This script starts the File Explorer and shows the user's Git repositories folder.
|
This script launches the File Explorer with the user's Git repositories folder.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-snipping-tool.ps1 - Starts the Snipping Tool
|
## open-snipping-tool.ps1 - Starts the Snipping Tool
|
||||||
|
|
||||||
This script starts the Snipping Tool application.
|
This script launches the Snipping Tool application.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-spotify.ps1 - Starts Spotify
|
## open-spotify.ps1 - Starts Spotify
|
||||||
|
|
||||||
This script starts the Spotify application.
|
This script launches the Spotify application.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-system-settings.ps1 - Opens system settings of Windows
|
## open-system-settings.ps1 - Opens Windows system settings
|
||||||
|
|
||||||
This script starts the system settings of Windows.
|
This script launches the Windows system settings application.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-task-manager.ps1 - Starts the Task Manager
|
## open-task-manager.ps1 - Starts the Task Manager
|
||||||
|
|
||||||
This script starts the Task Manager application (Windows only).
|
This script launches the Windows Task Manager application.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-toggl-track.ps1 - Opens Toggl Track
|
## open-toggl-track.ps1 - Opens Toggl Track
|
||||||
|
|
||||||
This script starts the Web browser and opens Toggl Track
|
This script launches the Web browser with the Toggl Track website.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
## open-videos-folders.ps1 - Opens the user's videos folder
|
## open-videos-folders.ps1 - Opens the user's videos folder
|
||||||
|
|
||||||
This script starts the File Explorer and shows the user's videos folder.
|
This script launches the File Explorer with the user's videos folder.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
26
Docs/open-wikipedia.md
Normal file
26
Docs/open-wikipedia.md
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
## open-wikipedia.ps1 - Opens Wikipedia's website
|
||||||
|
|
||||||
|
This script launches the Web browser with Wikipedia's website.
|
||||||
|
|
||||||
|
## Parameters
|
||||||
|
```powershell
|
||||||
|
open-wikipedia.ps1 [<CommonParameters>]
|
||||||
|
|
||||||
|
[<CommonParameters>]
|
||||||
|
This script supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction,
|
||||||
|
WarningVariable, OutBuffer, PipelineVariable, and OutVariable.
|
||||||
|
```
|
||||||
|
|
||||||
|
## Example
|
||||||
|
```powershell
|
||||||
|
PS> ./open-wikipedia
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
## Notes
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
|
||||||
|
## Related Links
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
|
||||||
|
*Generated by convert-ps2md.ps1 using the comment-based help of open-wikipedia.ps1*
|
@ -1,6 +1,6 @@
|
|||||||
## open-youtube.ps1 - Opens YouTube
|
## open-youtube.ps1 - Opens YouTube
|
||||||
|
|
||||||
This script starts the Web browser and opens YouTube.com.
|
This script launches the Web browser with YouTube's website.
|
||||||
|
|
||||||
## Parameters
|
## Parameters
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -148,6 +148,7 @@ Mega Collection of PowerShell Scripts
|
|||||||
| [open-task-manager.ps1](Scripts/open-task-manager.ps1)| Starts the Task Manager | [Help](Docs/open-task-manager.md) |
|
| [open-task-manager.ps1](Scripts/open-task-manager.ps1)| Starts the Task Manager | [Help](Docs/open-task-manager.md) |
|
||||||
| [open-toggl-track.ps1](Scripts/open-toggl-track.ps1) | Opens Toggl Track | [Help](Docs/open-toggl-track.md) |
|
| [open-toggl-track.ps1](Scripts/open-toggl-track.ps1) | Opens Toggl Track | [Help](Docs/open-toggl-track.md) |
|
||||||
| [open-videos-folder.ps1](Scripts/open-videos-folder.ps1)| Opens the user's videos folder | [Help](Docs/open-videos-folder.md) |
|
| [open-videos-folder.ps1](Scripts/open-videos-folder.ps1)| Opens the user's videos folder | [Help](Docs/open-videos-folder.md) |
|
||||||
|
| [open-wikipedia.ps1](Scripts/open-wikipedia.ps1) | Opens Wikipedia's website | [Help](Docs/open-wikipedia.md) |
|
||||||
| [open-youtube.ps1](Scripts/open-youtube.ps1) | Opens YouTube.com | [Help](Docs/open-youtube.md) |
|
| [open-youtube.ps1](Scripts/open-youtube.ps1) | Opens YouTube.com | [Help](Docs/open-youtube.md) |
|
||||||
| [remind-me.ps1](Scripts/remind-me.ps1) | Creates a scheduled task that will display a popup message | [Help](Docs/remind-me.md) |
|
| [remind-me.ps1](Scripts/remind-me.ps1) | Creates a scheduled task that will display a popup message | [Help](Docs/remind-me.md) |
|
||||||
| [save-screenshot.ps1](Scripts/save-screenshot.ps1) | Saves a single screenshot | [Help](Docs/save-screenshot.md) |
|
| [save-screenshot.ps1](Scripts/save-screenshot.ps1) | Saves a single screenshot | [Help](Docs/save-screenshot.md) |
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens Amazon's website
|
Opens Amazon's website
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Web browser and opens the Amazon website.
|
This script launches the Web browser with the Amazon website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-amazon
|
PS> ./open-amazon
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the default Web browser
|
Opens the default Web browser
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script opens the default Web browser, optional with 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
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the C: drive folder
|
Opens the C: drive folder
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the File Explorer showing the C: drive folder.
|
This script launches the File Explorer showing the C: drive folder.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-c-drive
|
PS> ./open-c-drive
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Starts the calculator app
|
Starts the calculator app
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the calculator application.
|
This script launches the calculator application.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-calculator
|
PS> ./open-calculator
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the user's downloads folder
|
Opens the user's downloads folder
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the File Explorer and shows the user's downloads folder.
|
This script launches the File Explorer showing the user's downloads folder.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-downloads-folder
|
PS> ./open-downloads-folder
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the user's Dropbox folder
|
Opens the user's Dropbox folder
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the File Explorer and shows the user's Dropbox folder.
|
This script launches the File and showing the user's Dropbox folder.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-dropbox-folder
|
PS> ./open-dropbox-folder
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Starts Microsoft Edge
|
Starts Microsoft Edge
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Microsoft Edge Web browser.
|
This script launches the Microsoft Edge Web browser.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-edge
|
PS> ./open-edge
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Starts the default email client
|
Starts the default email client
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the default email client.
|
This script launches the default email client.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-email-client
|
PS> ./open-email-client
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens Facebook's website
|
Opens Facebook's website
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Web browser with Facebook's website.
|
This script launches the Web browser with Facebook's website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-facebook
|
PS> ./open-facebook
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Starts the File Explorer
|
Starts the File Explorer
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the File Explorer.
|
This script launches the File Explorer.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-file-explorer
|
PS> ./open-file-explorer
|
||||||
.PARAMETER Path
|
.PARAMETER Path
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens FRITZ!Box's Web interface
|
Opens FRITZ!Box's Web interface
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Web browser with FRITZ!Box's Web interface.
|
This script launches the Web browser with FRITZ!Box's Web interface.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-fritz-box
|
PS> ./open-fritz-box
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens GitHub's website
|
Opens GitHub's website
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Web browser with GitHub's website.
|
This script launches the Web browser with the GitHub website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-github
|
PS> ./open-github
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens Google Contacts
|
Opens Google Contacts
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Web browser and opens Google Contacts.
|
This script launches the Web browser with Google Contacts website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-google-contacts
|
PS> ./open-google-contacts
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens Google Earth
|
Opens Google Earth
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Web browser and opens Google Earth
|
This script launches the Web browser with Google Earth's website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-google-earth
|
PS> ./open-google-earth
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens Google Maps
|
Opens Google Maps
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Web browser and opens Google Maps.
|
This script launches the Web browser with the Google Maps website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-google-maps
|
PS> ./open-google-maps
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens Google News
|
Opens Google News
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Web browser and opens Google News.
|
This script launches the Web browser with the Google News website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-google-news
|
PS> ./open-google-news
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens Google Search
|
Opens Google Search
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Web browser and opens Google Search
|
This script launches the Web browser with the Google Search website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-google-search
|
PS> ./open-google-search
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens Google Translate
|
Opens Google Translate
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Web browser and opens Google Translate.
|
This script launches the Web browser with the Google Translate website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-google-translate
|
PS> ./open-google-translate
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the home folder
|
Opens the home folder
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the File Explorer and shows the home folder.
|
This script launches the File Explorer with the user's home folder.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-home-folder
|
PS> ./open-home-folder
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Starts the Microsoft Store app
|
Starts the Microsoft Store app
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Microsoft Store application.
|
This script launches the Microsoft Store application.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-microsoft-store
|
PS> ./open-microsoft-store
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the music folder
|
Opens the music folder
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the File Explorer and shows the music folder.
|
This script launches the File Explorer with the user's music folder.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-music-folder
|
PS> ./open-music-folder
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Starts the Netflix app
|
Starts the Netflix app
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Netflix application.
|
This script launches the Netflix application.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-netflix
|
PS> ./open-netflix
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Starts Notepad
|
Starts Notepad
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts Notepad.
|
This script launches the Notepad application.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-notepad
|
PS> ./open-notepad
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the user's OneDrive folder
|
Opens the user's OneDrive folder
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script opens the user's OneDrive folder.
|
This script launches Microsoft OneDrive with the user's OneDrive folder.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-onedrive
|
PS> ./open-onedrive
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the user's pictures folder
|
Opens the user's pictures folder
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the File Explorer and shows the user's pictures folder.
|
This script launches the File Explorer with the user's pictures folder.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-pictures-folder
|
PS> ./open-pictures-folder
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the user's recycle bin folder
|
Opens the user's recycle bin folder
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the File Explorer and shows the user's recycle bin folder.
|
This script launches the File Explorer with the user's recycle bin folder.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-recycle-bin
|
PS> ./open-recycle-bin
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the Git repositories folder
|
Opens the Git repositories folder
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the File Explorer and shows the user's Git repositories folder.
|
This script launches the File Explorer with the user's Git repositories folder.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-repos-folder
|
PS> ./open-repos-folder
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Starts the Snipping Tool
|
Starts the Snipping Tool
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Snipping Tool application.
|
This script launches the Snipping Tool application.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-snipping-tool
|
PS> ./open-snipping-tool
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Starts Spotify
|
Starts Spotify
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Spotify application.
|
This script launches the Spotify application.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-spotify
|
PS> ./open-spotify
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
<#
|
<#
|
||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens system settings of Windows
|
Opens Windows system settings
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the system settings of Windows.
|
This script launches the Windows system settings application.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-system-settings
|
PS> ./open-system-settings
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Starts the Task Manager
|
Starts the Task Manager
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Task Manager application (Windows only).
|
This script launches the Windows Task Manager application.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-task-manager
|
PS> ./open-task-manager
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens Toggl Track
|
Opens Toggl Track
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Web browser and opens Toggl Track
|
This script launches the Web browser with the Toggl Track website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-toggl-track
|
PS> ./open-toggl-track
|
||||||
.NOTES
|
.NOTES
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens the user's videos folder
|
Opens the user's videos folder
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the File Explorer and shows the user's videos folder.
|
This script launches the File Explorer with the user's videos folder.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-videos-folder
|
PS> ./open-videos-folder
|
||||||
.NOTES
|
.NOTES
|
||||||
|
15
Scripts/open-wikipedia.ps1
Executable file
15
Scripts/open-wikipedia.ps1
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
<#
|
||||||
|
.SYNOPSIS
|
||||||
|
Opens Wikipedia's website
|
||||||
|
.DESCRIPTION
|
||||||
|
This script launches the Web browser with Wikipedia's website.
|
||||||
|
.EXAMPLE
|
||||||
|
PS> ./open-wikipedia
|
||||||
|
.NOTES
|
||||||
|
Author: Markus Fleschutz · License: CC0
|
||||||
|
.LINK
|
||||||
|
https://github.com/fleschutz/PowerShell
|
||||||
|
#>
|
||||||
|
|
||||||
|
& "$PSScriptRoot/open-browser.ps1" "https://www.wikipedia.org"
|
||||||
|
exit 0 # success
|
@ -2,7 +2,7 @@
|
|||||||
.SYNOPSIS
|
.SYNOPSIS
|
||||||
Opens YouTube
|
Opens YouTube
|
||||||
.DESCRIPTION
|
.DESCRIPTION
|
||||||
This script starts the Web browser and opens YouTube.com.
|
This script launches the Web browser with YouTube's website.
|
||||||
.EXAMPLE
|
.EXAMPLE
|
||||||
PS> ./open-youtube
|
PS> ./open-youtube
|
||||||
.NOTES
|
.NOTES
|
||||||
@ -11,10 +11,5 @@
|
|||||||
https://github.com/fleschutz/PowerShell
|
https://github.com/fleschutz/PowerShell
|
||||||
#>
|
#>
|
||||||
|
|
||||||
try {
|
|
||||||
& "$PSScriptRoot/open-browser.ps1" "https://www.youtube.com"
|
& "$PSScriptRoot/open-browser.ps1" "https://www.youtube.com"
|
||||||
exit 0 # success
|
exit 0 # success
|
||||||
} catch {
|
|
||||||
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
|
|
||||||
exit 1
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user