update to use new funcs

This commit is contained in:
2023-10-06 13:04:29 -04:00
parent 4cc7e91722
commit 7f98291e12
+15
View File
@@ -0,0 +1,15 @@
$LogsToEnable = @(
''
)
$LogsToDisable = @(
''
)
ForEach ( $log in $LogsToEnable ) {
Enable-Log -Name $log
}
ForEach ( $log in $LogsToDisable) {
Disable-Log -Name $log
}