PowerShell/Scripts/close-netflix.ps1

17 lines
298 B
PowerShell
Raw Normal View History

2021-08-17 20:14:27 +02:00
<#
.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
#>
2021-08-17 20:20:57 +02:00
& "$PSScriptRoot/close-program.ps1" "Netflix" "ApplicationFrameHost" "RuntimeBroker"
2021-08-17 20:14:27 +02:00
exit 0