Add open-netflix.ps1

This commit is contained in:
Markus Fleschutz
2021-08-17 20:26:13 +02:00
parent 0ba25c7f45
commit f8bbb5835d
3 changed files with 18 additions and 0 deletions

16
Scripts/open-netflix.ps1 Executable file
View File

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