I just don\'t like the syntax of:
if (Test-Path $path) { ... }
and
if (-not (Test-Path $path)) { ... } if (!(Test-Path $pa
if (Test-Path C:\DockerVol\SelfCertSSL) { write-host "Folder already exists." } else { New-Item -Path "C:\DockerVol\" -Name "SelfCertSSL" -ItemType "directory" }