Skip to content

Instantly share code, notes, and snippets.

@coldfusion39
Last active March 8, 2017 16:51
Show Gist options
  • Save coldfusion39/2404ffbd8d91b492adf825cce1353684 to your computer and use it in GitHub Desktop.
Save coldfusion39/2404ffbd8d91b492adf825cce1353684 to your computer and use it in GitHub Desktop.
Powershell Testing Script
function Greetings {
[CmdletBinding(SupportsShouldProcess = $True, ConfirmImpact = 'High')] Param (
[Parameter(Mandatory = $True)]
[String]
$name = 'anon'
)
write-host "Hello World, and $name!"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment