From d460bd3f312234a23db2e89f932b721e8f46dd3d Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Tue, 17 Aug 2021 20:14:27 +0200 Subject: [PATCH] Add close-netflix.ps1 --- Data/scripts.csv | 1 + README.md | 1 + Scripts/close-netflix.ps1 | 16 ++++++++++++++++ 3 files changed, 18 insertions(+) create mode 100755 Scripts/close-netflix.ps1 diff --git a/Data/scripts.csv b/Data/scripts.csv index bb648027..99a84bc9 100644 --- a/Data/scripts.csv +++ b/Data/scripts.csv @@ -44,6 +44,7 @@ close-edge.ps1, closes Microsoft Edge gracefully close-file-explorer.ps1, closes Microsoft File Explorer gracefully close-firefox.ps1, closes the Firefox Web browser gracefully close-program.ps1, closes the given program gracefully +close-netflix.ps1, closes Netflix gracefully close-system-settings.ps1, closes the System Settings gracefully close-thunderbird.ps1, closes Mozilla Thunderbird gracefully close-vlc.ps1, closes the VLC media player gracefully diff --git a/README.md b/README.md index b5bc9bc8..772bd5d4 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,7 @@ Mega Collection of PowerShell Scripts * [close-file-explorer.ps1](Scripts/close-file-explorer.ps1) - closes Microsoft File Explorer gracefully * [close-firefox.ps1](Scripts/close-firefox.ps1) - closes the Firefox Web browser gracefully * [close-program.ps1](Scripts/close-program.ps1) - closes the given program gracefully +* [close-netflix.ps1](Scripts/close-netflix.ps1) - closes Netflix gracefully * [close-system-settings.ps1](Scripts/close-system-settings.ps1) - closes the System Settings gracefully * [close-thunderbird.ps1](Scripts/close-thunderbird.ps1) - closes Mozilla Thunderbird gracefully * [close-vlc.ps1](Scripts/close-vlc.ps1) - closes the VLC media player gracefully diff --git a/Scripts/close-netflix.ps1 b/Scripts/close-netflix.ps1 new file mode 100755 index 00000000..c8b2c2dc --- /dev/null +++ b/Scripts/close-netflix.ps1 @@ -0,0 +1,16 @@ +<# +.SYNOPSIS + close-netflix.ps1 +.DESCRIPTION + Closes Netflix gracefully +.EXAMPLE + PS> .\close-netflix.ps1 +.LINK + https://github.com/fleschutz/PowerShell +.NOTES + Author: Markus Fleschutz + License: CC0 +#> + +& "$PSScriptRoot/close-program.ps1" "Netflix" "netflix" "netflix" +exit 0