mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-27 02:14:31 +01:00
17 lines
255 B
PowerShell
17 lines
255 B
PowerShell
|
<#
|
||
|
.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
|