The following useful information is primarily taken from the Windows PowerShell Language Quick Reference (QuadFold.rtf) documentation.
Functions
1function MyFunction
2{
3 write-object $args[0]
4}
5
6function test ([string] $label="default label", [int] $start=0)
7{
8 ...
9}
comments powered by Disqus