Add open-netflix.ps1

This commit is contained in:
Markus Fleschutz 2021-08-17 20:26:13 +02:00
parent 0ba25c7f45
commit f8bbb5835d
3 changed files with 18 additions and 0 deletions

View File

@ -149,6 +149,7 @@ open-browser.ps1, starts the default Web browser
open-calculator.ps1, starts the calculator program
open-email-client.ps1, starts the default email client
open-file-explorer.ps1, starts the Microsoft File Explorer
open-netflix.ps1, starts the Netflix app
open-recycle-bin.ps1, starts the File Explorer with the recycle bin folder
play-beep.ps1, plays a beep sound
play-files.ps1, plays the given audio files

Can't render this file because it has a wrong number of fields in line 81.

View File

@ -95,6 +95,7 @@ Mega Collection of PowerShell Scripts
* [open-calculator.ps1](Scripts/open-calculator.ps1) - starts the calculator program
* [open-email-client.ps1](Scripts/open-browser.ps1) - starts the default email client
* [open-file-explorer.ps1](Scripts/open-file-explorer.ps1) - starts the File Explorer
* [open-netflix.ps1](Scripts/open-netflix.ps1) - starts the Netflix app
* [open-recycle-bin.ps1](Scripts/open-recycle-bin.ps1) - starts the File Explorer with the recycle bin folder
* [set-wallpaper.ps1](Scripts/set-wallpaper.ps1) - sets the given image as wallpaper
* [take-screenshot.ps1](Scripts/take-screenshot.ps1) - takes a single screenshot

16
Scripts/open-netflix.ps1 Executable file
View File

@ -0,0 +1,16 @@
<#
.SYNOPSIS
open-netflix.ps1
.DESCRIPTION
Starts the Netflix app (needs to be installed)
.EXAMPLE
PS> .\open-netflix.ps1
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz
License: CC0
#>
Start-Process netflix:
exit 0