Skip to content

Instantly share code, notes, and snippets.

@deangrant
Created October 3, 2015 11:10
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 deangrant/cd701a6c3c4d6411d868 to your computer and use it in GitHub Desktop.
Save deangrant/cd701a6c3c4d6411d868 to your computer and use it in GitHub Desktop.
Parameter block snippet from Write-Log function
[CmdletBinding()]
Param (
[ValidateScript({Get-Item (Get-Item $_).DirectoryName})]
[String]$LogFile = "",
[Parameter(Mandatory=$True)]
[String]$Message,
[ValidateSet('Info','Error','Warning')]
[String]$Level = "Info"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment