Skip to content

Instantly share code, notes, and snippets.

View HillbillyJones's full-sized avatar

Ben Jones HillbillyJones

  • Augusta, GA
View GitHub Profile
function Write-Verbose
{
[cmdletbinding()]
Param(
[string]$Message
)
# Comment the next line to disable logging to file
[string]$LogFilePath = "c:\temp\customlog.txt"
if($LogFilePath)