Skip to content

Instantly share code, notes, and snippets.

@cantgis
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cantgis/6627ac538e21be0377c8 to your computer and use it in GitHub Desktop.
Save cantgis/6627ac538e21be0377c8 to your computer and use it in GitHub Desktop.
GitHub Example for 51cto
<#
.Synopsis
Short description
.DESCRIPTION
Long description
.EXAMPLE
Example of how to use this cmdlet
.EXAMPLE
Another example of how to use this cmdlet
#>
function Verb-Noun
{
[CmdletBinding()]
[OutputType([int])]
Param
(
# Param1 help description
[Parameter(Mandatory=$true,
ValueFromPipelineByPropertyName=$true,
Position=0)]
$Param1,
# Param2 help description
[int]
$Param2
)
Begin
{
}
Process
{
}
End
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment