gitextract_bzjyocov/ ├── .devcontainer/ │ ├── codespaces/ │ │ ├── codespaces-docker-compose.yml │ │ └── devcontainer.json │ ├── devcontainer.json │ └── docker-compose.yml ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── question.md │ ├── Pull_Request_Template.md │ ├── issue_template.md │ └── workflows/ │ ├── PR-PesterTest.yml │ ├── PR.yml │ ├── deploy-module.yml │ └── docker-image.yml ├── .gitignore ├── .markdownlint.json ├── .vscode/ │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GitVersion.yml ├── LICENSE ├── PSScriptAnalyzerSettings.psd1 ├── RELEASE.md ├── RequiredModules.psd1 ├── Resolve-Dependency.ps1 ├── Resolve-Dependency.psd1 ├── SECURITY.md ├── azure-pipelines.yml ├── build.ps1 ├── build.yaml ├── builddocs.ps1 ├── codecov.yml ├── containers/ │ ├── JessAndBeard.psm1 │ ├── base/ │ │ ├── dockerfile │ │ └── profile.ps1 │ ├── second/ │ │ └── dockerfile │ └── third/ │ └── dockerfile ├── dbachecksdevcontainer.code-workspace ├── developing/ │ ├── Archive/ │ │ ├── Get-AllInstanceInfo testing.ps1 │ │ ├── Perf Testing pesterv5.ps1 │ │ ├── PerfAndValidate-Checks.ps1 │ │ ├── Validate v4 adn v5.ps1 │ │ ├── initfields.ps1 │ │ ├── originalGet-AllInstanceInfo.ps1 │ │ ├── pesterv5testing.ps1 │ │ └── tests/ │ │ ├── Help.Exceptions.ps1 │ │ ├── InModule.Help.Exceptions.ps1 │ │ ├── InModule.Help.Tests.ps1 │ │ ├── Integration/ │ │ │ ├── DockerTests.ps1 │ │ │ └── docker-compose.yml │ │ ├── Project.Tests.ps1 │ │ ├── Reset-DbcConfig.Tests.ps1 │ │ ├── Test-SingleFile.ps1 │ │ ├── Unit.Tests.ps1 │ │ ├── build/ │ │ │ ├── Initialize-VstsAgentOnWindowsServerCoreContainer.ps1 │ │ │ ├── Install-VstsAgentOnWindowsServerCoreContainer.ps1 │ │ │ └── Remove-VstsAgentOnWindowsServerCoreContainer.ps1 │ │ ├── checks/ │ │ │ ├── AgentChecks.Tests.ps1 │ │ │ ├── DatabaseChecks.Tests.ps1 │ │ │ ├── InstanceChecks.Tests.ps1 │ │ │ └── ServerChecks.Tests.ps1 │ │ ├── constants.ps1 │ │ ├── functions/ │ │ │ ├── Export-DbcConfig.Tests.ps1 │ │ │ ├── Get-CheckFile.Tests.ps1 │ │ │ ├── Get-CheckInformation.tests.ps1 │ │ │ ├── Get-DatabaseDetail.Tests.ps1 │ │ │ ├── Get-DbcCheck.Tests.ps1 │ │ │ ├── Get-DbcConfig.Tests.ps1 │ │ │ ├── Get-DbcConfigValue.Tests.ps1 │ │ │ ├── Get-DbcTagCollection.Tests.ps1 │ │ │ ├── Import-DbcConfig.Tests.ps1 │ │ │ ├── Invoke-DbcCheck.Tests.ps1 │ │ │ ├── Invoke-DbcConfigFile.Tests.ps1 │ │ │ ├── Set-DbcConfig.Tests.ps1 │ │ │ ├── Set-DbcFile.Tests.ps1 │ │ │ ├── get-check.json │ │ │ └── results.json │ │ └── readme.md │ ├── Howto.md │ ├── Oslo Demo.ps1 │ ├── PSConfEU demo.md │ ├── Robs-Instance.ps1 │ ├── Setting up for Sampler.ps1 │ └── settingupfor2022.ps1 ├── docs/ │ ├── RELEASE.md │ ├── functions/ │ │ ├── Clear-DbcPowerBiDataSource.md │ │ ├── Convert-DbcResult.md │ │ ├── Export-DbcConfig.md │ │ ├── Get-DbcCheck.md │ │ ├── Get-DbcConfig.md │ │ ├── Get-DbcConfigValue.md │ │ ├── Get-DbcReleaseNote.md │ │ ├── Get-DbcTagCollection.md │ │ ├── Import-DbcConfig.md │ │ ├── Invoke-DbcCheck.md │ │ ├── Invoke-DbcConfigFile.md │ │ ├── Reset-DbcConfig.md │ │ ├── Save-DbcRequiredModules.md │ │ ├── Set-DbcCisConfig.md │ │ ├── Set-DbcConfig.md │ │ ├── Set-DbcFile.md │ │ ├── Start-DbcPowerBi.md │ │ ├── Update-DbcPowerBiDataSource.md │ │ ├── Update-DbcRequiredModules.md │ │ └── Write-DbcTable.md │ └── index.md ├── header-mkdocs.yml ├── mkdocs.yml ├── readme.md ├── source/ │ ├── bin/ │ │ ├── dbachecks-FromDatabase.pbit │ │ ├── dbachecks.pbit │ │ └── dbachecks.pbix │ ├── checks/ │ │ ├── Agent.Tests.ps1 │ │ ├── Agentv5.Tests.ps1 │ │ ├── Database.Tests.ps1 │ │ ├── Databasev5.Tests.ps1 │ │ ├── Domain.Tests.ps1 │ │ ├── HADR.Tests.ps1 │ │ ├── Instance.Tests.ps1 │ │ ├── Instancev5.Tests.ps1 │ │ ├── LogShipping.Tests.ps1 │ │ ├── MaintenanceSolution.Tests.ps1 │ │ └── Server.Tests.ps1 │ ├── dbachecks.psd1 │ ├── dbachecks.psm1 │ ├── functions/ │ │ ├── Clear-DbcPowerBiDataSource.ps1 │ │ ├── Convert-DbcResult.ps1 │ │ ├── Export-DbcConfig.ps1 │ │ ├── Get-DbcCheck.ps1 │ │ ├── Get-DbcConfig.ps1 │ │ ├── Get-DbcConfigValue.ps1 │ │ ├── Get-DbcReleaseNote.ps1 │ │ ├── Get-DbcTagCollection.ps1 │ │ ├── Import-DbcConfig.ps1 │ │ ├── Invoke-DbcCheck.ps1 │ │ ├── Invoke-DbcConfigFile.ps1 │ │ ├── Reset-DbcConfig.ps1 │ │ ├── Save-DbcRequiredModules.ps1 │ │ ├── Set-DbcCisConfig.ps1 │ │ ├── Set-DbcConfig.ps1 │ │ ├── Set-DbcFile.ps1 │ │ ├── Start-DbcPowerBi.ps1 │ │ ├── Update-DbcPowerBiDataSource.ps1 │ │ ├── Update-DbcRequiredModules.ps1 │ │ └── Write-DbcTable.ps1 │ ├── internal/ │ │ ├── assertions/ │ │ │ ├── Agent.Assertions.ps1 │ │ │ ├── Database.Assertions.ps1 │ │ │ ├── Instance.Assertions.ps1 │ │ │ └── Server.Assertions.ps1 │ │ ├── configurations/ │ │ │ ├── DbcCheckDescriptions.json │ │ │ └── configuration.ps1 │ │ ├── functions/ │ │ │ ├── Get-AllAgentInfo.ps1 │ │ │ ├── Get-AllDatabaseInfo.ps1 │ │ │ ├── Get-CheckFile.ps1 │ │ │ ├── Get-CheckInformation.ps1 │ │ │ ├── Get-CheckRepo.ps1 │ │ │ ├── Get-ComputerName.ps1 │ │ │ ├── Get-DatabaseDetail.ps1 │ │ │ ├── Get-SqlInstance.ps1 │ │ │ ├── Get-Version.ps1 │ │ │ ├── Get-v5Checks.ps1 │ │ │ ├── Invoke-ConfigurationScript.ps1 │ │ │ ├── Invoke-DbcCheckv4.ps1 │ │ │ ├── Invoke-DbcCheckv5.ps1 │ │ │ ├── New-Json.ps1 │ │ │ ├── NewGet-AllInstanceInfo.ps1 │ │ │ ├── Select-DefaultView.ps1 │ │ │ └── Set-DatabaseForIntegrationTesting.ps1 │ │ ├── scripts/ │ │ │ ├── postimport.ps1 │ │ │ └── preimport.ps1 │ │ └── tepp/ │ │ └── autocomplete.ps1 │ └── xml/ │ └── dbachecks.Format.ps1xml ├── tests/ │ ├── Project.Tests.ps1 │ ├── QA/ │ │ └── module.tests.ps1 │ ├── Unit/ │ │ ├── Private/ │ │ │ └── Get-PrivateFunction.tests.ps1 │ │ └── Public/ │ │ ├── Export-DbcConfig.Tests.ps1 │ │ └── Get-Something.tests.ps1 │ ├── Unit.Tests.ps1 │ └── readme.md └── xml/ └── dbachecks.Format.ps1xml