mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-07 16:44:22 +01:00
17 lines
313 B
PowerShell
Executable File
17 lines
313 B
PowerShell
Executable File
<#
|
|
.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
|