Skip to main content

Basic PowerShell start

·1 min
Author
John Billekens
Technical Consultant | End User Computing
<#
.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