File tree 1 file changed +3
-2
lines changed
source/internal/configurations
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ Register-PSFConfigValidation -Name validation.EmailValidation -ScriptBlock $Emai
21
21
22
22
# some configs to help with autocompletes and other module level stuff
23
23
# apps
24
- $defaultRepo = " $script :ModuleRoot \ checks"
24
+ $defaultRepo = Join-Path - Path $script :ModuleRoot - ChildPath checks
25
25
Set-PSFConfig - Module dbachecks - Name app.checkrepos - Value @ ($defaultRepo ) - Initialize - Description " Where Pester tests/checks are stored"
26
26
Set-PSFConfig - Module dbachecks - Name app.sqlinstance - Value $null - Initialize - Description " List of SQL Server instances that SQL-based tests will run against"
27
27
Set-PSFConfig - Module dbachecks - Name app.computername - Value $null - Initialize - Description " List of Windows Servers that Windows-based tests will run against"
@@ -248,7 +248,8 @@ Set-PSFConfig -Module dbachecks -Name policy.database.symmetrickeyencryptionleve
248
248
249
249
# skips - these are for whole checks that should not run by default or internal commands that can't be skipped using ExcludeTag
250
250
# instance
251
- Set-PSFConfig - Module dbachecks - Name skip.instance.modeldbgrowth - Validation bool - Value $false - Initialize - Description " Skip the model database growth settings test"
251
+ Set-PSFConfig - Module dbachecks - Name skip.instance.memorydump - Validation bool - Value $false - Initialize - Description " Skip the memory dump check"
252
+ Set-PSFConfig - Module dbachecks - Name skip.instance.modeldbgrowth - Validation bool - Value $false - Initialize - Description " Skip the model database growth settings check"
252
253
Set-PSFConfig - Module dbachecks - Name skip.instance.defaulttrace - Validation bool - Value $false - Initialize - Description " Skip the default trace check"
253
254
Set-PSFConfig - Module dbachecks - Name skip.instance.dac - Validation bool - Value $false - Initialize - Description " Skip Dedicated Administrator Connection (DAC) check"
254
255
Set-PSFConfig - Module dbachecks - Name skip.instance.CrossDBOwnershipChaining - Validation bool - Value $false - Initialize - Description " Skip Cross Database Ownership Chaining check"
You can’t perform that action at this time.
0 commit comments