PowerShell/Scripts/open-netflix.ps1
2021-08-29 17:50:03 +02:00

16 lines
260 B
PowerShell
Executable File

<#
.SYNOPSIS
open-netflix.ps1
.DESCRIPTION
Starts the Netflix app (needs to be installed).
.EXAMPLE
PS> .\open-netflix.ps1
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
Start-Process netflix:
exit 0