Added hello-world.ps1

This commit is contained in:
Markus Fleschutz 2024-10-01 13:42:27 +02:00
parent fd963889d2
commit d01b5969eb
2 changed files with 16 additions and 0 deletions

16
scripts/hello-world.ps1 Executable file
View File

@ -0,0 +1,16 @@
<#
.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

0
scripts/search-repo.ps1 Normal file → Executable file
View File