Skip to content

Instantly share code, notes, and snippets.

@devynspencer
Created November 3, 2016 07:17
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 devynspencer/78c09c74d43a7b35001824cc89871a58 to your computer and use it in GitHub Desktop.
Save devynspencer/78c09c74d43a7b35001824cc89871a58 to your computer and use it in GitHub Desktop.
Function New-Something {
[CmdletBinding()]
param(
[Parameter(Mandatory=$True, ValueFromPipeline=$True)]
[string[]] $ComputerName
)
begin {
}
process {
}
end {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment