Write-HelloWorld.ps1
<#PSScriptInfo .VERSION 1.0 .GUID d3f6e7ee-d7eb-4e2d-8891-c8fcdc64f8ac .AUTHOR Azure Automation Team #> <# .SYNOPSIS Write a sample output .DESCRIPTION Writes "Hello World!" as a sample output .EXAMPLE Write-HelloWorld #> Write-Output "Hello World!" |