This is an old revision of the document!
Powershell Script Arguments
function foo { param( [Parameter(Mandatory=$true)] [String]$EmailTo = "ToAddr@gmail.com", [Parameter(Mandatory=$true)] [String]$EmailFrom = "FromAddr@gmail.com" ) }
powershell_script_arguments
This is an old revision of the document!
function foo { param( [Parameter(Mandatory=$true)] [String]$EmailTo = "ToAddr@gmail.com", [Parameter(Mandatory=$true)] [String]$EmailFrom = "FromAddr@gmail.com" ) }