Add close-netflix.ps1

This commit is contained in:
Markus Fleschutz 2021-08-17 20:14:27 +02:00
parent dcdd9a3e3d
commit d460bd3f31
3 changed files with 18 additions and 0 deletions

View File

@ -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

1 Script Description
44 close-file-explorer.ps1 closes Microsoft File Explorer gracefully
45 close-firefox.ps1 closes the Firefox Web browser gracefully
46 close-program.ps1 closes the given program gracefully
47 close-netflix.ps1 closes Netflix gracefully
48 close-system-settings.ps1 closes the System Settings gracefully
49 close-thunderbird.ps1 closes Mozilla Thunderbird gracefully
50 close-vlc.ps1 closes the VLC media player gracefully

View File

@ -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

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

@ -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