<# .SYNOPSIS Sample Script .DESCRIPTION This PowerShell script is a sample script writing "Hello World" to the console. .EXAMPLE PS> ./hello-world.ps1 Hello World .LINK https://github.com/fleschutz/PowerShell .NOTES Author: Markus Fleschutz | License: CC0 #> Write-Output "Hello World" exit 0 # success