Basic PowerShell start


<#
.SYNOPSIS  
	A summary
.DESCRIPTION  
	A more in depth description
.NOTES  
	Additional Notes
	File Name  : xx.ps1
	Author     : First Last - e@mail.com
	Requires   : ...
.LINK
	A hyper link
.EXAMPLE
	The first example
.EXAMPLE
	The second example
.PARAMETER xxx
	text
#>

[CmdletBinding()]
param (  
	[Parameter(Position=0, Mandatory=$true, ValueFromPipeline=$true)][int64] $xxx=42  
)  
  
#Script

 

Leave a comment

Your email address will not be published. Required fields are marked *