PowerShell/scripts/hello-world.ps1
2024-10-01 15:11:03 +02:00

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