diff --git a/Data/scripts.csv b/Data/scripts.csv index 99a84bc9..f22c4cd0 100644 --- a/Data/scripts.csv +++ b/Data/scripts.csv @@ -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 diff --git a/README.md b/README.md index 772bd5d4..c0969f9e 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/Scripts/open-netflix.ps1 b/Scripts/open-netflix.ps1 new file mode 100755 index 00000000..b3f72b4f --- /dev/null +++ b/Scripts/open-netflix.ps1 @@ -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