au2mator-Template.ps1
<#PSScriptInfo .VERSION 1.0 .GUID e97d7c57-60bf-48dc-938e-4ee713b62c58 .AUTHOR au2mator .COMPANYNAME au2mator.com .COPYRIGHT .TAGS Windows au2mator ActiveDirectory .LICENSEURI .PROJECTURI https://au2mator.com/documentation/create-a-service-with-azure-automation/ .ICONURI https://au2mator.com/my-content/TransparentPNGsymbol.png .EXTERNALMODULEDEPENDENCIES .REQUIREDSCRIPTS .EXTERNALSCRIPTDEPENDENCIES .RELEASENOTES .PRIVATEDATA #> <# .DESCRIPTION This is a Template, to start with an au2mator Azure Automation Runbook #> #region InputParamaters ##Question in au2mator param ( [parameter(Mandatory = $true)] [String]$Input1, [parameter(Mandatory = $true)] [String]$Input2, ## au2mator Initialize Data [parameter(Mandatory = $true)] [String]$InitiatedBy, [parameter(Mandatory = $true)] [String]$RequestId, [parameter(Mandatory = $true)] [String]$Service, [parameter(Mandatory = $true)] [String]$TargetUserId ) #endregion InputParamaters #region Script # Do Stuff # Do Stuff # Do Stuff #endregion Script #region Return return $Input1 #endregion Return |