DEV Community

greenmtnsun
greenmtnsun

Posted on

Health: Example Call

Import-Module "$PSScriptRoot\SqlTechnicalSanity.psd1" -Force

$result = Invoke-SqlTechnicalSanity
-SqlInstance @('localhost')

-OutputDirectory "$PSScriptRoot\out" `
-PassThru

$result.Score | Format-List
$result.HtmlPath
$result.JsonPath

Top comments (0)