Skip to content

Commit

Permalink
Add repl commands to the psm1 (#9124)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpomfret authored Oct 10, 2023
1 parent 73ff74e commit e89435a
Showing 1 changed file with 19 additions and 5 deletions.
24 changes: 19 additions & 5 deletions dbatools.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -854,11 +854,27 @@ if ($PSVersionTable.PSVersion.Major -lt 5) {
'New-DbaLinkedServerLogin',
'Remove-DbaLinkedServerLogin',
'Remove-DbaCredential',
'Remove-DbaAgentProxy'
'Remove-DbaAgentProxy',
'Disable-DbaReplDistributor',
'Enable-DbaReplDistributor',
'Disable-DbaReplPublishing',
'Enable-DbaReplPublishing',
'New-DbaReplPublication',
'Get-DbaReplArticle',
'Get-DbaReplArticleColumn',
'Add-DbaReplArticle',
'Remove-DbaReplArticle',
'Remove-DbaReplPublication',
'New-DbaReplSubscription',
'Remove-DbaReplSubscription',
'New-DbaReplCreationScriptOptions',
'Get-DbaReplSubscription',
'Get-DbaReplDistributor',
'Get-DbaReplPublication',
'Get-DbaReplServer'
)
$script:noncoresmo = @(
# SMO issues
'Get-DbaReplDistributor',
'Copy-DbaPolicyManagement',
'Copy-DbaDataCollector',
'Get-DbaPbmCategory',
Expand All @@ -867,10 +883,8 @@ if ($PSVersionTable.PSVersion.Major -lt 5) {
'Get-DbaPbmObjectSet',
'Get-DbaPbmPolicy',
'Get-DbaPbmStore',
'Get-DbaReplPublication',
'Test-DbaReplLatency',
'Export-DbaReplServerSetting',
'Get-DbaReplServer'
'Export-DbaReplServerSetting'
)
$script:windowsonly = @(
# filesystem (\\ related),
Expand Down

0 comments on commit e89435a

Please sign in to comment.