mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-26 01:43:37 +01:00
Add close-netflix.ps1
This commit is contained in:
parent
dcdd9a3e3d
commit
d460bd3f31
@ -44,6 +44,7 @@ close-edge.ps1, closes Microsoft Edge gracefully
|
|||||||
close-file-explorer.ps1, closes Microsoft File Explorer gracefully
|
close-file-explorer.ps1, closes Microsoft File Explorer gracefully
|
||||||
close-firefox.ps1, closes the Firefox Web browser gracefully
|
close-firefox.ps1, closes the Firefox Web browser gracefully
|
||||||
close-program.ps1, closes the given program 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-system-settings.ps1, closes the System Settings gracefully
|
||||||
close-thunderbird.ps1, closes Mozilla Thunderbird gracefully
|
close-thunderbird.ps1, closes Mozilla Thunderbird gracefully
|
||||||
close-vlc.ps1, closes the VLC media player gracefully
|
close-vlc.ps1, closes the VLC media player gracefully
|
||||||
|
|
@ -83,6 +83,7 @@ Mega Collection of PowerShell Scripts
|
|||||||
* [close-file-explorer.ps1](Scripts/close-file-explorer.ps1) - closes Microsoft File Explorer gracefully
|
* [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-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-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-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-thunderbird.ps1](Scripts/close-thunderbird.ps1) - closes Mozilla Thunderbird gracefully
|
||||||
* [close-vlc.ps1](Scripts/close-vlc.ps1) - closes the VLC media player gracefully
|
* [close-vlc.ps1](Scripts/close-vlc.ps1) - closes the VLC media player gracefully
|
||||||
|
16
Scripts/close-netflix.ps1
Executable file
16
Scripts/close-netflix.ps1
Executable 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
|
Loading…
Reference in New Issue
Block a user