mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 09:04:18 +01:00
16 lines
315 B
PowerShell
Executable File
16 lines
315 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
close-netflix.ps1
|
|
.DESCRIPTION
|
|
Closes the Netflix program gracefully.
|
|
.EXAMPLE
|
|
PS> .\close-netflix.ps1
|
|
.NOTES
|
|
Author: Markus Fleschutz · License: CC0
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
#>
|
|
|
|
& "$PSScriptRoot/close-program.ps1" "Netflix" "ApplicationFrameHost" "RuntimeBroker"
|
|
exit 0
|