PowerShell/Scripts/open-netflix.ps1
2021-09-24 17:19:49 +02:00

16 lines
254 B
PowerShell
Executable File

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