You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice a parameter like -ScoreRegPath and just store the number. After that admins can pick that value with a management tool like SCCM and create compliance reports for easy tracking it.
It would be nice a parameter like -ScoreRegPath and just store the number. After that admins can pick that value with a management tool like SCCM and create compliance reports for easy tracking it.
For example:
Write-ProtocolEntry -Text "Your HardeningKitty score is: $HardeningKittyScoreRounded. HardeningKitty Statistics: Total checks: $StatsTotal - Passed: $StatsPassed, Low: $StatsLow, Medium: $StatsMedium, High: $StatsHigh." -LogLevel "Info"
if (!(test-path -Path $ScoreRegPath)){ new-item -Path $ScoreRegPath }
New-ItemProperty -Path $ScoreRegPath -Name Score -Value "$HardeningKittyScoreRounded"
I have it modified but will be nice if its included and signed on your script
The text was updated successfully, but these errors were encountered: