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