functions/Invoke-DbaDbLogShipping.ps1
function Invoke-DbaDbLogShipping { <# .SYNOPSIS Invoke-DbaDbLogShipping sets up log shipping for one or more databases .DESCRIPTION Invoke-DbaDbLogShipping helps to easily set up log shipping for one or more databases. This function will make a lot of decisions for you assuming you want default values like a daily interval for the schedules with a 15 minute interval on the day. There are some settings that cannot be made by the function and they need to be prepared before the function is executed. The following settings need to be made before log shipping can be initiated: - Backup destination (the folder and the privileges) - Copy destination (the folder and the privileges) * Privileges Make sure your agent service on both the primary and the secondary instance is an Active Directory account. Also have the credentials ready to set the folder permissions ** Network share The backup destination needs to be shared and have the share privileges of FULL CONTROL to Everyone. ** NTFS permissions The backup destination must have at least read/write permissions for the primary instance agent account. The backup destination must have at least read permissions for the secondary instance agent account. The copy destination must have at least read/write permission for the secondary instance agent acount. .PARAMETER SourceSqlInstance Source SQL Server instance which contains the databases to be log shipped. You must have sysadmin access and server version must be SQL Server version 2000 or greater. .PARAMETER DestinationSqlInstance Destination SQL Server instance which contains the databases to be log shipped. You must have sysadmin access and server version must be SQL Server version 2000 or greater. .PARAMETER SourceSqlCredential Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. For MFA support, please use Connect-DbaInstance. .PARAMETER SourceCredential Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. For MFA support, please use Connect-DbaInstance. .PARAMETER DestinationSqlCredential Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. For MFA support, please use Connect-DbaInstance. .PARAMETER DestinationCredential Login to the target instance using alternative credentials. Accepts PowerShell credentials (Get-Credential). Windows Authentication, SQL Server Authentication, Active Directory - Password, and Active Directory - Integrated are all supported. For MFA support, please use Connect-DbaInstance. .PARAMETER Database Database to set up log shipping for. .PARAMETER SharedPath The backup unc path to place the backup files. This is the root directory. A directory with the name of the database will be created in this path. .PARAMETER LocalPath If the backup path is locally for the source server you can also set this value. .PARAMETER BackupJob Name of the backup that will be created in the SQL Server agent. The parameter works as a prefix where the name of the database will be added to the backup job name. The default is "LSBackup_[databasename]" .PARAMETER BackupRetention The backup retention period in minutes. Default is 4320 / 72 hours .PARAMETER BackupSchedule Name of the backup schedule created for the backup job. The parameter works as a prefix where the name of the database will be added to the backup job schedule name. Default is "LSBackupSchedule_[databasename]" .PARAMETER BackupScheduleDisabled Parameter to set the backup schedule to disabled upon creation. By default the schedule is enabled. .PARAMETER BackupScheduleFrequencyType A value indicating when a job is to be executed. Allowed values are "Daily", "AgentStart", "IdleComputer" .PARAMETER BackupScheduleFrequencyInterval The number of type periods to occur between each execution of the backup job. .PARAMETER BackupScheduleFrequencySubdayType Specifies the units for the sub-day FrequencyInterval. Allowed values are "Time", "Seconds", "Minutes", "Hours" .PARAMETER BackupScheduleFrequencySubdayInterval The number of sub-day type periods to occur between each execution of the backup job. .PARAMETER BackupScheduleFrequencyRelativeInterval A job's occurrence of FrequencyInterval in each month, if FrequencyInterval is 32 (monthlyrelative). .PARAMETER BackupScheduleFrequencyRecurrenceFactor The number of weeks or months between the scheduled execution of a job. FrequencyRecurrenceFactor is used only if FrequencyType is 8, "Weekly", 16, "Monthly", 32 or "MonthlyRelative". .PARAMETER BackupScheduleStartDate The date on which execution of a job can begin. .PARAMETER BackupScheduleEndDate The date on which execution of a job can stop. .PARAMETER BackupScheduleStartTime The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock. Example: '010000' for 01:00:00 AM. Example: '140000' for 02:00:00 PM. .PARAMETER BackupScheduleEndTime The time on any day to end execution of a job. Format HHMMSS / 24 hour clock. Example: '010000' for 01:00:00 AM. Example: '140000' for 02:00:00 PM. .PARAMETER BackupThreshold Is the length of time, in minutes, after the last backup before a threshold alert error is raised. The default is 60. .PARAMETER CompressBackup Do the backups need to be compressed. By default the backups are not compressed. .PARAMETER CopyDestinationFolder The path to copy the transaction log backup files to. This is the root directory. A directory with the name of the database will be created in this path. .PARAMETER CopyJob Name of the copy job that will be created in the SQL Server agent. The parameter works as a prefix where the name of the database will be added to the copy job name. The default is "LSBackup_[databasename]" .PARAMETER CopyRetention The copy retention period in minutes. Default is 4320 / 72 hours .PARAMETER CopySchedule Name of the backup schedule created for the copy job. The parameter works as a prefix where the name of the database will be added to the copy job schedule name. Default is "LSCopy_[DestinationServerName]_[DatabaseName]" .PARAMETER CopyScheduleDisabled Parameter to set the copy schedule to disabled upon creation. By default the schedule is enabled. .PARAMETER CopyScheduleFrequencyType A value indicating when a job is to be executed. Allowed values are "Daily", "AgentStart", "IdleComputer" .PARAMETER CopyScheduleFrequencyInterval The number of type periods to occur between each execution of the copy job. .PARAMETER CopyScheduleFrequencySubdayType Specifies the units for the subday FrequencyInterval. Allowed values are "Time", "Seconds", "Minutes", "Hours" .PARAMETER CopyScheduleFrequencySubdayInterval The number of subday type periods to occur between each execution of the copy job. .PARAMETER CopyScheduleFrequencyRelativeInterval A job's occurrence of FrequencyInterval in each month, if FrequencyInterval is 32 (monthlyrelative). .PARAMETER CopyScheduleFrequencyRecurrenceFactor The number of weeks or months between the scheduled execution of a job. FrequencyRecurrenceFactor is used only if FrequencyType is 8, "Weekly", 16, "Monthly", 32 or "MonthlyRelative". .PARAMETER CopyScheduleStartDate The date on which execution of a job can begin. .PARAMETER CopyScheduleEndDate The date on which execution of a job can stop. .PARAMETER CopyScheduleStartTime The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock. Example: '010000' for 01:00:00 AM. Example: '140000' for 02:00:00 PM. .PARAMETER CopyScheduleEndTime The time on any day to end execution of a job. Format HHMMSS / 24 hour clock. Example: '010000' for 01:00:00 AM. Example: '140000' for 02:00:00 PM. .PARAMETER DisconnectUsers If this parameter is set in combinations of standby the users will be disconnected during restore. .PARAMETER FullBackupPath Path to an existing full backup. Use this when an existing backup needs to used to initialize the database on the secondary instance. .PARAMETER GenerateFullBackup If the database is not initialized on the secondary instance it can be done by creating a new full backup and restore it for you. .PARAMETER HistoryRetention Is the length of time in minutes in which the history is retained. The default value is 14420 .PARAMETER NoRecovery If this parameter is set the database will be in recovery mode. The database will not be readable. This setting is default. .PARAMETER NoInitialization If this parameter is set the secondary database will not be initialized. The database needs to be on the secondary instance in recovery mode. .PARAMETER PrimaryMonitorServer Is the name of the monitor server for the primary server. The default is the name of the primary sql server. .PARAMETER PrimaryMonitorCredential Allows you to login to enter a secure credential. Only needs to be used when the PrimaryMonitorServerSecurityMode is 0 or "sqlserver" To use: $scred = Get-Credential, then pass $scred object to the -PrimaryMonitorCredential parameter. .PARAMETER PrimaryMonitorServerSecurityMode The security mode used to connect to the monitor server for the primary server. Allowed values are 0, "sqlserver", 1, "windows" The default is 1 or Windows. .PARAMETER PrimaryThresholdAlertEnabled Enables the Threshold alert for the primary database .PARAMETER RestoreDataFolder Folder to be used to restore the database data files. Only used when parameter GenerateFullBackup or UseExistingFullBackup are set. If the parameter is not set the default data folder of the secondary instance will be used including the name of the database. If the folder is set but doesn't exist the default data folder of the secondary instance will be used including the name of the database. .PARAMETER RestoreLogFolder Folder to be used to restore the database log files. Only used when parameter GenerateFullBackup or UseExistingFullBackup are set. If the parameter is not set the default transaction log folder of the secondary instance will be used. If the folder is set but doesn't exist the default transaction log folder of the secondary instance will be used. .PARAMETER RestoreDelay In case a delay needs to be set for the restore. The default is 0. .PARAMETER RestoreAlertThreshold The amount of minutes after which an alert will be raised is no restore has taken place. The default is 45 minutes. .PARAMETER RestoreJob Name of the restore job that will be created in the SQL Server agent. The parameter works as a prefix where the name of the database will be added to the restore job name. The default is "LSRestore_[databasename]" .PARAMETER RestoreRetention The backup retention period in minutes. Default is 4320 / 72 hours .PARAMETER RestoreSchedule Name of the backup schedule created for the restore job. The parameter works as a prefix where the name of the database will be added to the restore job schedule name. Default is "LSRestore_[DestinationServerName]_[DatabaseName]" .PARAMETER RestoreScheduleDisabled Parameter to set the restore schedule to disabled upon creation. By default the schedule is enabled. .PARAMETER RestoreScheduleFrequencyType A value indicating when a job is to be executed. Allowed values are "Daily", "AgentStart", "IdleComputer" .PARAMETER RestoreScheduleFrequencyInterval The number of type periods to occur between each execution of the restore job. .PARAMETER RestoreScheduleFrequencySubdayType Specifies the units for the subday FrequencyInterval. Allowed values are "Time", "Seconds", "Minutes", "Hours" .PARAMETER RestoreScheduleFrequencySubdayInterval The number of subday type periods to occur between each execution of the restore job. .PARAMETER RestoreScheduleFrequencyRelativeInterval A job's occurrence of FrequencyInterval in each month, if FrequencyInterval is 32 (monthlyrelative). .PARAMETER RestoreScheduleFrequencyRecurrenceFactor The number of weeks or months between the scheduled execution of a job. FrequencyRecurrenceFactor is used only if FrequencyType is 8, "Weekly", 16, "Monthly", 32 or "MonthlyRelative". .PARAMETER RestoreScheduleStartDate The date on which execution of a job can begin. .PARAMETER RestoreScheduleEndDate The date on which execution of a job can stop. .PARAMETER RestoreScheduleStartTime The time on any day to begin execution of a job. Format HHMMSS / 24 hour clock. Example: '010000' for 01:00:00 AM. Example: '140000' for 02:00:00 PM. .PARAMETER RestoreScheduleEndTime The time on any day to end execution of a job. Format HHMMSS / 24 hour clock. Example: '010000' for 01:00:00 AM. Example: '140000' for 02:00:00 PM. .PARAMETER RestoreThreshold The number of minutes allowed to elapse between restore operations before an alert is generated. The default value = 0 .PARAMETER SecondaryDatabasePrefix The secondary database can be renamed to include a prefix. .PARAMETER SecondaryDatabaseSuffix The secondary database can be renamed to include a suffix. .PARAMETER SecondaryMonitorServer Is the name of the monitor server for the secondary server. The default is the name of the secondary sql server. .PARAMETER SecondaryMonitorCredential Allows you to login to enter a secure credential. Only needs to be used when the SecondaryMonitorServerSecurityMode is 0 or "sqlserver" To use: $scred = Get-Credential, then pass $scred object to the -SecondaryMonitorCredential parameter. .PARAMETER SecondaryMonitorServerSecurityMode The security mode used to connect to the monitor server for the secondary server. Allowed values are 0, "sqlserver", 1, "windows" The default is 1 or Windows. .PARAMETER SecondaryThresholdAlertEnabled Enables the Threshold alert for the secondary database .PARAMETER Standby If this parameter is set the database will be set to standby mode making the database readable. If not set the database will be in recovery mode. .PARAMETER StandbyDirectory Directory to place the standby file(s) in .PARAMETER UseExistingFullBackup If the database is not initialized on the secondary instance it can be done by selecting an existing full backup and restore it for you. .PARAMETER UseBackupFolder This enables the user to specify a specific backup folder containing one or more backup files to initialize the database on the secondary instance. .PARAMETER WhatIf Shows what would happen if the command were to run. No actions are actually performed. .PARAMETER Confirm Prompts you for confirmation before executing any changing operations within the command. .PARAMETER EnableException Use this switch to disable any kind of verbose messages .PARAMETER Force The force parameter will ignore some errors in the parameters and assume defaults. It will also remove the any present schedules with the same name for the specific job. .NOTES Tags: LogShipping Author: Sander Stad (@sqlstad), sqlstad.nl Website: https://dbatools.io Copyright: (c) 2018 by dbatools, licensed under MIT License: MIT https://opensource.org/licenses/MIT .LINK https://dbatools.io/Invoke-DbaDbLogShipping .EXAMPLE PS C:\> $params = @{ >> SourceSqlInstance = 'sql1' >> DestinationSqlInstance = 'sql2' >> Database = 'db1' >> SharedPath= '\\sql1\logshipping' >> LocalPath= 'D:\Data\logshipping' >> BackupScheduleFrequencyType = 'daily' >> BackupScheduleFrequencyInterval = 1 >> CompressBackup = $true >> CopyScheduleFrequencyType = 'daily' >> CopyScheduleFrequencyInterval = 1 >> GenerateFullBackup = $true >> RestoreScheduleFrequencyType = 'daily' >> RestoreScheduleFrequencyInterval = 1 >> SecondaryDatabaseSuffix = 'DR' >> CopyDestinationFolder = '\\sql2\logshippingdest' >> Force = $true >> } >> PS C:\> Invoke-DbaDbLogShipping @params Sets up log shipping for database "db1" with the backup path to a network share allowing local backups. It creates daily schedules for the backup, copy and restore job with all the defaults to be executed every 15 minutes daily. The secondary database will be called "db1_LS". .EXAMPLE PS C:\> $params = @{ >> SourceSqlInstance = 'sql1' >> DestinationSqlInstance = 'sql2' >> Database = 'db1' >> SharedPath= '\\sql1\logshipping' >> GenerateFullBackup = $true >> Force = $true >> } >> PS C:\> Invoke-DbaDbLogShipping @params Sets up log shipping with all defaults except that a backup file is generated. The script will show a message that the copy destination has not been supplied and asks if you want to use the default which would be the backup directory of the secondary server with the folder "logshipping" i.e. "D:\SQLBackup\Logshiping". #> [CmdletBinding(DefaultParameterSetName = "Default", SupportsShouldProcess, ConfirmImpact = "Medium")] param( [parameter(Mandatory)] [ValidateNotNullOrEmpty()] [Alias("SourceServerInstance", "SourceSqlServerSqlServer", "Source")] [DbaInstanceParameter]$SourceSqlInstance, [parameter(Mandatory)] [ValidateNotNullOrEmpty()] [Alias("DestinationServerInstance", "DestinationSqlServer", "Destination")] [DbaInstanceParameter[]]$DestinationSqlInstance, [System.Management.Automation.PSCredential] $SourceSqlCredential, [System.Management.Automation.PSCredential] $SourceCredential, [System.Management.Automation.PSCredential] $DestinationSqlCredential, [System.Management.Automation.PSCredential] $DestinationCredential, [Parameter(Mandatory, ValueFromPipeline)] [object[]]$Database, [parameter(Mandatory)] [Alias("BackupNetworkPath")] [string]$SharedPath, [Alias("BackupLocalPath")] [string]$LocalPath, [string]$BackupJob, [int]$BackupRetention, [string]$BackupSchedule, [switch]$BackupScheduleDisabled, [ValidateSet("Daily", "Weekly", "AgentStart", "IdleComputer")] [object]$BackupScheduleFrequencyType, [object[]]$BackupScheduleFrequencyInterval, [ValidateSet('Time', 'Seconds', 'Minutes', 'Hours')] [object]$BackupScheduleFrequencySubdayType, [int]$BackupScheduleFrequencySubdayInterval, [ValidateSet('Unused', 'First', 'Second', 'Third', 'Fourth', 'Last')] [object]$BackupScheduleFrequencyRelativeInterval, [int]$BackupScheduleFrequencyRecurrenceFactor, [string]$BackupScheduleStartDate, [string]$BackupScheduleEndDate, [string]$BackupScheduleStartTime, [string]$BackupScheduleEndTime, [int]$BackupThreshold, [switch]$CompressBackup, [string]$CopyDestinationFolder, [string]$CopyJob, [int]$CopyRetention, [string]$CopySchedule, [switch]$CopyScheduleDisabled, [ValidateSet("Daily", "Weekly", "AgentStart", "IdleComputer")] [object]$CopyScheduleFrequencyType, [object[]]$CopyScheduleFrequencyInterval, [ValidateSet('Time', 'Seconds', 'Minutes', 'Hours')] [object]$CopyScheduleFrequencySubdayType, [int]$CopyScheduleFrequencySubdayInterval, [ValidateSet('Unused', 'First', 'Second', 'Third', 'Fourth', 'Last')] [object]$CopyScheduleFrequencyRelativeInterval, [int]$CopyScheduleFrequencyRecurrenceFactor, [string]$CopyScheduleStartDate, [string]$CopyScheduleEndDate, [string]$CopyScheduleStartTime, [string]$CopyScheduleEndTime, [switch]$DisconnectUsers, [string]$FullBackupPath, [switch]$GenerateFullBackup, [int]$HistoryRetention, [switch]$NoRecovery, [switch]$NoInitialization, [string]$PrimaryMonitorServer, [System.Management.Automation.PSCredential] $PrimaryMonitorCredential, [ValidateSet(0, "sqlserver", 1, "windows")] [object]$PrimaryMonitorServerSecurityMode, [switch]$PrimaryThresholdAlertEnabled, [string]$RestoreDataFolder, [string]$RestoreLogFolder, [int]$RestoreDelay, [int]$RestoreAlertThreshold, [string]$RestoreJob, [int]$RestoreRetention, [string]$RestoreSchedule, [switch]$RestoreScheduleDisabled, [ValidateSet("Daily", "Weekly", "AgentStart", "IdleComputer")] [object]$RestoreScheduleFrequencyType, [object[]]$RestoreScheduleFrequencyInterval, [ValidateSet('Time', 'Seconds', 'Minutes', 'Hours')] [object]$RestoreScheduleFrequencySubdayType, [int]$RestoreScheduleFrequencySubdayInterval, [ValidateSet('Unused', 'First', 'Second', 'Third', 'Fourth', 'Last')] [object]$RestoreScheduleFrequencyRelativeInterval, [int]$RestoreScheduleFrequencyRecurrenceFactor, [string]$RestoreScheduleStartDate, [string]$RestoreScheduleEndDate, [string]$RestoreScheduleStartTime, [string]$RestoreScheduleEndTime, [int]$RestoreThreshold, [string]$SecondaryDatabasePrefix, [string]$SecondaryDatabaseSuffix, [string]$SecondaryMonitorServer, [System.Management.Automation.PSCredential] $SecondaryMonitorCredential, [ValidateSet(0, "sqlserver", 1, "windows")] [object]$SecondaryMonitorServerSecurityMode, [switch]$SecondaryThresholdAlertEnabled, [switch]$Standby, [string]$StandbyDirectory, [switch]$UseExistingFullBackup, [string]$UseBackupFolder, [switch]$Force, [switch]$EnableException ) begin { if ($Force) { $ConfirmPreference = 'none' } Write-Message -Message "Started log shipping for $SourceSqlInstance to $DestinationSqlInstance" -Level Verbose # Try connecting to the instance try { $sourceServer = Connect-DbaInstance -SqlInstance $SourceSqlInstance -SqlCredential $SourceSqlCredential } catch { Stop-Function -Message "Failure" -Category ConnectionError -ErrorRecord $_ -Target $SourceSqlInstance return } # Check the instance if it is a named instance $SourceServerName, $SourceInstanceName = $SourceSqlInstance.FullName.Split("\") if ($null -eq $SourceInstanceName) { $SourceInstanceName = "MSSQLSERVER" } # Set up regex strings for several checks $RegexDate = '(?<!\d)(?:(?:(?:1[6-9]|[2-9]\d)?\d{2})(?:(?:(?:0[13578]|1[02])31)|(?:(?:0[1,3-9]|1[0-2])(?:29|30)))|(?:(?:(?:(?:1[6-9]|[2-9]\d)?(?:0[48]|[2468][048]|[13579][26])|(?:(?:16|[2468][048]|[3579][26])00)))0229)|(?:(?:1[6-9]|[2-9]\d)?\d{2})(?:(?:0?[1-9])|(?:1[0-2]))(?:0?[1-9]|1\d|2[0-8]))(?!\d)' $RegexTime = '^(?:(?:([01]?\d|2[0-3]))?([0-5]?\d))?([0-5]?\d)$' $RegexUnc = '^\\(?:\\[^<>:`"/\\|?*]+)+$' # Check the connection timeout if ($SourceServer.ConnectionContext.StatementTimeout -ne 0) { $SourceServer.ConnectionContext.StatementTimeout = 0 Write-Message -Message "Connection timeout of $SourceServer is set to 0" -Level Verbose } # Check the backup network path Write-Message -Message "Testing backup network path $SharedPath" -Level Verbose if ((Test-DbaPath -Path $SharedPath -SqlInstance $SourceSqlInstance -SqlCredential $SourceCredential) -ne $true) { Stop-Function -Message "Backup network path $SharedPath is not valid or can't be reached." -Target $SourceSqlInstance return } elseif ($SharedPath -notmatch $RegexUnc) { Stop-Function -Message "Backup network path $SharedPath has to be in the form of \\server\share." -Target $SourceSqlInstance return } # Check the backup compression if ($SourceServer.Version.Major -gt 9) { if ($CompressBackup) { Write-Message -Message "Setting backup compression to 1." -Level Verbose [bool]$BackupCompression = 1 } else { $backupServerSetting = (Get-DbaSpConfigure -SqlInstance $SourceSqlInstance -ConfigName DefaultBackupCompression).ConfiguredValue Write-Message -Message "Setting backup compression to default server setting $backupServerSetting." -Level Verbose [bool]$BackupCompression = $backupServerSetting } } else { Write-Message -Message "Source server $SourceServer does not support backup compression" -Level Verbose } # Check the database parameter if ($Database) { foreach ($db in $Database) { if ($db -notin $SourceServer.Databases.Name) { Stop-Function -Message "Database $db cannot be found on instance $SourceSqlInstance" -Target $SourceSqlInstance } $DatabaseCollection = $SourceServer.Databases | Where-Object { $_.Name -in $Database } } } else { Stop-Function -Message "Please supply a database to set up log shipping for" -Target $SourceSqlInstance -Continue } # Set the database mode if ($Standby) { $DatabaseStatus = 1 Write-Message -Message "Destination database status set to STANDBY" -Level Verbose } else { $DatabaseStatus = 0 Write-Message -Message "Destination database status set to NO RECOVERY" -Level Verbose } # Setting defaults if (-not $BackupRetention) { $BackupRetention = 4320 Write-Message -Message "Backup retention set to $BackupRetention" -Level Verbose } if (-not $BackupThreshold) { $BackupThreshold = 60 Write-Message -Message "Backup Threshold set to $BackupThreshold" -Level Verbose } if (-not $CopyRetention) { $CopyRetention = 4320 Write-Message -Message "Copy retention set to $CopyRetention" -Level Verbose } if (-not $HistoryRetention) { $HistoryRetention = 14420 Write-Message -Message "History retention set to $HistoryRetention" -Level Verbose } if (-not $RestoreAlertThreshold) { $RestoreAlertThreshold = 45 Write-Message -Message "Restore alert Threshold set to $RestoreAlertThreshold" -Level Verbose } if (-not $RestoreDelay) { $RestoreDelay = 0 Write-Message -Message "Restore delay set to $RestoreDelay" -Level Verbose } if (-not $RestoreRetention) { $RestoreRetention = 4320 Write-Message -Message "Restore retention set to $RestoreRetention" -Level Verbose } if (-not $RestoreThreshold) { $RestoreThreshold = 0 Write-Message -Message "Restore Threshold set to $RestoreThreshold" -Level Verbose } if (-not $PrimaryMonitorServerSecurityMode) { $PrimaryMonitorServerSecurityMode = 1 Write-Message -Message "Primary monitor server security mode set to $PrimaryMonitorServerSecurityMode" -Level Verbose } if (-not $SecondaryMonitorServerSecurityMode) { $SecondaryMonitorServerSecurityMode = 1 Write-Message -Message "Secondary monitor server security mode set to $SecondaryMonitorServerSecurityMode" -Level Verbose } if (-not $BackupScheduleFrequencyType) { $BackupScheduleFrequencyType = "Daily" Write-Message -Message "Backup frequency type set to $BackupScheduleFrequencyType" -Level Verbose } if (-not $BackupScheduleFrequencyInterval) { $BackupScheduleFrequencyInterval = "EveryDay" Write-Message -Message "Backup frequency interval set to $BackupScheduleFrequencyInterval" -Level Verbose } if (-not $BackupScheduleFrequencySubdayType) { $BackupScheduleFrequencySubdayType = "Minutes" Write-Message -Message "Backup frequency subday type set to $BackupScheduleFrequencySubdayType" -Level Verbose } if (-not $BackupScheduleFrequencySubdayInterval) { $BackupScheduleFrequencySubdayInterval = 15 Write-Message -Message "Backup frequency subday interval set to $BackupScheduleFrequencySubdayInterval" -Level Verbose } if (-not $BackupScheduleFrequencyRelativeInterval) { $BackupScheduleFrequencyRelativeInterval = "Unused" Write-Message -Message "Backup frequency relative interval set to $BackupScheduleFrequencyRelativeInterval" -Level Verbose } if (-not $BackupScheduleFrequencyRecurrenceFactor) { $BackupScheduleFrequencyRecurrenceFactor = 0 Write-Message -Message "Backup frequency recurrence factor set to $BackupScheduleFrequencyRecurrenceFactor" -Level Verbose } if (-not $CopyScheduleFrequencyType) { $CopyScheduleFrequencyType = "Daily" Write-Message -Message "Copy frequency type set to $CopyScheduleFrequencyType" -Level Verbose } if (-not $CopyScheduleFrequencyInterval) { $CopyScheduleFrequencyInterval = "EveryDay" Write-Message -Message "Copy frequency interval set to $CopyScheduleFrequencyInterval" -Level Verbose } if (-not $CopyScheduleFrequencySubdayType) { $CopyScheduleFrequencySubdayType = "Minutes" Write-Message -Message "Copy frequency subday type set to $CopyScheduleFrequencySubdayType" -Level Verbose } if (-not $CopyScheduleFrequencySubdayInterval) { $CopyScheduleFrequencySubdayInterval = 15 Write-Message -Message "Copy frequency subday interval set to $CopyScheduleFrequencySubdayInterval" -Level Verbose } if (-not $CopyScheduleFrequencyRelativeInterval) { $CopyScheduleFrequencyRelativeInterval = "Unused" Write-Message -Message "Copy frequency relative interval set to $CopyScheduleFrequencyRelativeInterval" -Level Verbose } if (-not $CopyScheduleFrequencyRecurrenceFactor) { $CopyScheduleFrequencyRecurrenceFactor = 0 Write-Message -Message "Copy frequency recurrence factor set to $CopyScheduleFrequencyRecurrenceFactor" -Level Verbose } if (-not $RestoreScheduleFrequencyType) { $RestoreScheduleFrequencyType = "Daily" Write-Message -Message "Restore frequency type set to $RestoreScheduleFrequencyType" -Level Verbose } if (-not $RestoreScheduleFrequencyInterval) { $RestoreScheduleFrequencyInterval = "EveryDay" Write-Message -Message "Restore frequency interval set to $RestoreScheduleFrequencyInterval" -Level Verbose } if (-not $RestoreScheduleFrequencySubdayType) { $RestoreScheduleFrequencySubdayType = "Minutes" Write-Message -Message "Restore frequency subday type set to $RestoreScheduleFrequencySubdayType" -Level Verbose } if (-not $RestoreScheduleFrequencySubdayInterval) { $RestoreScheduleFrequencySubdayInterval = 15 Write-Message -Message "Restore frequency subday interval set to $RestoreScheduleFrequencySubdayInterval" -Level Verbose } if (-not $RestoreScheduleFrequencyRelativeInterval) { $RestoreScheduleFrequencyRelativeInterval = "Unused" Write-Message -Message "Restore frequency relative interval set to $RestoreScheduleFrequencyRelativeInterval" -Level Verbose } if (-not $RestoreScheduleFrequencyRecurrenceFactor) { $RestoreScheduleFrequencyRecurrenceFactor = 0 Write-Message -Message "Restore frequency recurrence factor set to $RestoreScheduleFrequencyRecurrenceFactor" -Level Verbose } # Checking for contradicting variables if ($NoInitialization -and ($GenerateFullBackup -or $UseExistingFullBackup)) { Stop-Function -Message "Cannot use -NoInitialization with -GenerateFullBackup or -UseExistingFullBackup" -Target $DestinationSqlInstance return } if ($UseBackupFolder -and ($GenerateFullBackup -or $NoInitialization -or $UseExistingFullBackup)) { Stop-Function -Message "Cannot use -UseBackupFolder with -GenerateFullBackup, -NoInitialization or -UseExistingFullBackup" -Target $DestinationSqlInstance return } # Check the subday interval if (($BackupScheduleFrequencySubdayType -in 2, "Seconds", 4, "Minutes") -and (-not ($BackupScheduleFrequencySubdayInterval -ge 1 -or $BackupScheduleFrequencySubdayInterval -le 59))) { Stop-Function -Message "Backup subday interval $BackupScheduleFrequencySubdayInterval must be between 1 and 59 when subday type is 2, 'Seconds', 4 or 'Minutes'" -Target $SourceSqlInstance return } elseif (($BackupScheduleFrequencySubdayType -in 8, "Hours") -and (-not ($BackupScheduleFrequencySubdayInterval -ge 1 -and $BackupScheduleFrequencySubdayInterval -le 23))) { Stop-Function -Message "Backup Subday interval $BackupScheduleFrequencySubdayInterval must be between 1 and 23 when subday type is 8 or 'Hours" -Target $SourceSqlInstance return } # Check the subday interval if (($CopyScheduleFrequencySubdayType -in 2, "Seconds", 4, "Minutes") -and (-not ($CopyScheduleFrequencySubdayInterval -ge 1 -or $CopyScheduleFrequencySubdayInterval -le 59))) { Stop-Function -Message "Copy subday interval $CopyScheduleFrequencySubdayInterval must be between 1 and 59 when subday type is 2, 'Seconds', 4 or 'Minutes'" -Target $DestinationSqlInstance return } elseif (($CopyScheduleFrequencySubdayType -in 8, "Hours") -and (-not ($CopyScheduleFrequencySubdayInterval -ge 1 -and $CopyScheduleFrequencySubdayInterval -le 23))) { Stop-Function -Message "Copy subday interval $CopyScheduleFrequencySubdayInterval must be between 1 and 23 when subday type is 8 or 'Hours'" -Target $DestinationSqlInstance return } # Check the subday interval if (($RestoreScheduleFrequencySubdayType -in 2, "Seconds", 4, "Minutes") -and (-not ($RestoreScheduleFrequencySubdayInterval -ge 1 -or $RestoreScheduleFrequencySubdayInterval -le 59))) { Stop-Function -Message "Restore subday interval $RestoreScheduleFrequencySubdayInterval must be between 1 and 59 when subday type is 2, 'Seconds', 4 or 'Minutes'" -Target $DestinationSqlInstance return } elseif (($RestoreScheduleFrequencySubdayType -in 8, "Hours") -and (-not ($RestoreScheduleFrequencySubdayInterval -ge 1 -and $RestoreScheduleFrequencySubdayInterval -le 23))) { Stop-Function -Message "Restore subday interval $RestoreScheduleFrequencySubdayInterval must be between 1 and 23 when subday type is 8 or 'Hours" -Target $DestinationSqlInstance return } # Check the backup start date if (-not $BackupScheduleStartDate) { $BackupScheduleStartDate = (Get-Date -format "yyyyMMdd") Write-Message -Message "Backup start date set to $BackupScheduleStartDate" -Level Verbose } else { if ($BackupScheduleStartDate -notmatch $RegexDate) { Stop-Function -Message "Backup start date $BackupScheduleStartDate needs to be a valid date with format yyyyMMdd" -Target $SourceSqlInstance return } } # Check the back start time if (-not $BackupScheduleStartTime) { $BackupScheduleStartTime = '000000' Write-Message -Message "Backup start time set to $BackupScheduleStartTime" -Level Verbose } elseif ($BackupScheduleStartTime -notmatch $RegexTime) { Stop-Function -Message "Backup start time $BackupScheduleStartTime needs to match between '000000' and '235959'" -Target $SourceSqlInstance return } # Check the back end time if (-not $BackupScheduleEndTime) { $BackupScheduleEndTime = '235959' Write-Message -Message "Backup end time set to $BackupScheduleEndTime" -Level Verbose } elseif ($BackupScheduleStartTime -notmatch $RegexTime) { Stop-Function -Message "Backup end time $BackupScheduleStartTime needs to match between '000000' and '235959'" -Target $SourceSqlInstance return } # Check the backup end date if (-not $BackupScheduleEndDate) { $BackupScheduleEndDate = '99991231' } elseif ($BackupScheduleEndDate -notmatch $RegexDate) { Stop-Function -Message "Backup end date $BackupScheduleEndDate needs to be a valid date with format yyyyMMdd" -Target $SourceSqlInstance return } # Check the copy start date if (-not $CopyScheduleStartDate) { $CopyScheduleStartDate = (Get-Date -format "yyyyMMdd") Write-Message -Message "Copy start date set to $CopyScheduleStartDate" -Level Verbose } else { if ($CopyScheduleStartDate -notmatch $RegexDate) { Stop-Function -Message "Copy start date $CopyScheduleStartDate needs to be a valid date with format yyyyMMdd" -Target $SourceSqlInstance return } } # Check the copy end date if (-not $CopyScheduleEndDate) { $CopyScheduleEndDate = '99991231' } elseif ($CopyScheduleEndDate -notmatch $RegexDate) { Stop-Function -Message "Copy end date $CopyScheduleEndDate needs to be a valid date with format yyyyMMdd" -Target $SourceSqlInstance return } # Check the copy start time if (-not $CopyScheduleStartTime) { $CopyScheduleStartTime = '000000' Write-Message -Message "Copy start time set to $CopyScheduleStartTime" -Level Verbose } elseif ($CopyScheduleStartTime -notmatch $RegexTime) { Stop-Function -Message "Copy start time $CopyScheduleStartTime needs to match between '000000' and '235959'" -Target $SourceSqlInstance return } # Check the copy end time if (-not $CopyScheduleEndTime) { $CopyScheduleEndTime = '235959' Write-Message -Message "Copy end time set to $CopyScheduleEndTime" -Level Verbose } elseif ($CopyScheduleEndTime -notmatch $RegexTime) { Stop-Function -Message "Copy end time $CopyScheduleEndTime needs to match between '000000' and '235959'" -Target $SourceSqlInstance return } # Check the restore start date if (-not $RestoreScheduleStartDate) { $RestoreScheduleStartDate = (Get-Date -format "yyyyMMdd") Write-Message -Message "Restore start date set to $RestoreScheduleStartDate" -Level Verbose } else { if ($RestoreScheduleStartDate -notmatch $RegexDate) { Stop-Function -Message "Restore start date $RestoreScheduleStartDate needs to be a valid date with format yyyyMMdd" -Target $SourceSqlInstance return } } # Check the restore end date if (-not $RestoreScheduleEndDate) { $RestoreScheduleEndDate = '99991231' } elseif ($RestoreScheduleEndDate -notmatch $RegexDate) { Stop-Function -Message "Restore end date $RestoreScheduleEndDate needs to be a valid date with format yyyyMMdd" -Target $SourceSqlInstance return } # Check the restore start time if (-not $RestoreScheduleStartTime) { $RestoreScheduleStartTime = '000000' Write-Message -Message "Restore start time set to $RestoreScheduleStartTime" -Level Verbose } elseif ($RestoreScheduleStartTime -notmatch $RegexTime) { Stop-Function -Message "Restore start time $RestoreScheduleStartTime needs to match between '000000' and '235959'" -Target $SourceSqlInstance return } # Check the restore end time if (-not $RestoreScheduleEndTime) { $RestoreScheduleEndTime = '235959' Write-Message -Message "Restore end time set to $RestoreScheduleEndTime" -Level Verbose } elseif ($RestoreScheduleEndTime -notmatch $RegexTime) { Stop-Function -Message "Restore end time $RestoreScheduleEndTime needs to match between '000000' and '235959'" -Target $SourceSqlInstance return } } process { if (Test-FunctionInterrupt) { return } foreach ($destInstance in $DestinationSqlInstance) { $setupResult = "Success" $comment = "" # Try connecting to the instance try { $destinationServer = Connect-DbaInstance -SqlInstance $destInstance -SqlCredential $DestinationSqlCredential } catch { Stop-Function -Message "Failure" -Category ConnectionError -ErrorRecord $_ -Target $destInstance -Continue } $DestinationServerName, $DestinationInstanceName = $destInstance.FullName.Split("\") if ($null -eq $DestinationInstanceName) { $DestinationInstanceName = "MSSQLSERVER" } $IsDestinationLocal = $false # Check if it's local or remote if ($DestinationServerName -in ".", "localhost", $env:ServerName, "127.0.0.1") { $IsDestinationLocal = $true } # Check the instance names and the database settings if (($SourceSqlInstance -eq $destInstance) -and (-not $SecondaryDatabasePrefix -or $SecondaryDatabaseSuffix)) { $setupResult = "Failed" $comment = "The destination database is the same as the source" Stop-Function -Message "The destination database is the same as the source`nPlease enter a prefix or suffix using -SecondaryDatabasePrefix or -SecondaryDatabaseSuffix." -Target $SourceSqlInstance return } if ($DestinationServer.ConnectionContext.StatementTimeout -ne 0) { $DestinationServer.ConnectionContext.StatementTimeout = 0 Write-Message -Message "Connection timeout of $DestinationServer is set to 0" -Level Verbose } # Check the copy destination if (-not $CopyDestinationFolder) { # Make a default copy destination by retrieving the backup folder and adding a directory $CopyDestinationFolder = "$($DestinationServer.Settings.BackupDirectory)\Logshipping" # Check to see if the path already exists Write-Message -Message "Testing copy destination path $CopyDestinationFolder" -Level Verbose if (Test-DbaPath -Path $CopyDestinationFolder -SqlInstance $destInstance -SqlCredential $DestinationCredential) { Write-Message -Message "Copy destination $CopyDestinationFolder already exists" -Level Verbose } else { # Check if force is being used if (-not $Force) { # Set up the confirm part $message = "The copy destination is missing. Do you want to use the default $($CopyDestinationFolder)?" $choiceYes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes", "Answer Yes." $choiceNo = New-Object System.Management.Automation.Host.ChoiceDescription "&No", "Answer No." $options = [System.Management.Automation.Host.ChoiceDescription[]]($choiceYes, $choiceNo) $result = $host.ui.PromptForChoice($title, $message, $options, 0) # Check the result from the confirm switch ($result) { # If yes 0 { # Try to create the new directory try { # If the destination server is remote and the credential is set if (-not $IsDestinationLocal -and $DestinationCredential) { Invoke-Command2 -ComputerName $DestinationServerName -Credential $DestinationCredential -ScriptBlock { Write-Message -Message "Creating copy destination folder $CopyDestinationFolder" -Level Verbose New-Item -Path $CopyDestinationFolder -ItemType Directory -Credential $DestinationCredential -Force:$Force | Out-Null } } # If the server is local and the credential is set elseif ($DestinationCredential) { Invoke-Command2 -Credential $DestinationCredential -ScriptBlock { Write-Message -Message "Creating copy destination folder $CopyDestinationFolder" -Level Verbose New-Item -Path $CopyDestinationFolder -ItemType Directory -Credential $DestinationCredential -Force:$Force | Out-Null } } # If the server is local and the credential is not set else { Write-Message -Message "Creating copy destination folder $CopyDestinationFolder" -Level Verbose New-Item -Path $CopyDestinationFolder -Force:$Force -ItemType Directory | Out-Null } Write-Message -Message "Copy destination $CopyDestinationFolder created." -Level Verbose } catch { $setupResult = "Failed" $comment = "Something went wrong creating the copy destination folder" Stop-Function -Message "Something went wrong creating the copy destination folder $CopyDestinationFolder. `n$_" -Target $destInstance -ErrorRecord $_ return } } 1 { $setupResult = "Failed" $comment = "Copy destination is a mandatory parameter" Stop-Function -Message "Copy destination is a mandatory parameter. Please make sure the value is entered." -Target $destInstance return } } # switch } # if not force else { # Try to create the copy destination on the local server try { Write-Message -Message "Creating copy destination folder $CopyDestinationFolder" -Level Verbose New-Item $CopyDestinationFolder -ItemType Directory -Credential $DestinationCredential -Force:$Force | Out-Null Write-Message -Message "Copy destination $CopyDestinationFolder created." -Level Verbose } catch { $setupResult = "Failed" $comment = "Something went wrong creating the copy destination folder" Stop-Function -Message "Something went wrong creating the copy destination folder $CopyDestinationFolder. `n$_" -Target $destInstance -ErrorRecord $_ return } } # else not force } # if test path copy destination } # if not copy destination Write-Message -Message "Testing copy destination path $CopyDestinationFolder" -Level Verbose if ((Test-DbaPath -Path $CopyDestinationFolder -SqlInstance $destInstance -SqlCredential $DestinationCredential) -ne $true) { $setupResult = "Failed" $comment = "Copy destination folder $CopyDestinationFolder is not valid or can't be reached" Stop-Function -Message "Copy destination folder $CopyDestinationFolder is not valid or can't be reached." -Target $destInstance return } elseif ($CopyDestinationFolder.StartsWith("\\") -and $CopyDestinationFolder -notmatch $RegexUnc) { $setupResult = "Failed" $comment = "Copy destination folder $CopyDestinationFolder has to be in the form of \\server\share" Stop-Function -Message "Copy destination folder $CopyDestinationFolder has to be in the form of \\server\share." -Target $destInstance return } if (-not ($SecondaryDatabasePrefix -or $SecondaryDatabaseSuffix) -and ($SourceServer.Name -eq $DestinationServer.Name) -and ($SourceServer.InstanceName -eq $DestinationServer.InstanceName)) { if ($Force) { $SecondaryDatabaseSuffix = "_LS" } else { $setupResult = "Failed" $comment = "Destination database is the same as source database" Stop-Function -Message "Destination database is the same as source database.`nPlease check the secondary server, database prefix or suffix or use -Force to set the secondary database using a suffix." -Target $SourceSqlInstance return } } # Check if standby is being used if ($Standby) { # Check the stand-by directory if ($StandbyDirectory) { # Check if the path is reachable for the destination server if ((Test-DbaPath -Path $StandbyDirectory -SqlInstance $destInstance -SqlCredential $DestinationCredential) -ne $true) { $setupResult = "Failed" $comment = "The directory $StandbyDirectory cannot be reached by the destination instance" Stop-Function -Message "The directory $StandbyDirectory cannot be reached by the destination instance. Please check the permission and credentials." -Target $destInstance return } } elseif (-not $StandbyDirectory -and $Force) { $StandbyDirectory = $destInstance.BackupDirectory Write-Message -Message "Stand-by directory was not set. Setting it to $StandbyDirectory" -Level Verbose } else { $setupResult = "Failed" $comment = "Please set the parameter -StandbyDirectory when using -Standby" Stop-Function -Message "Please set the parameter -StandbyDirectory when using -Standby" -Target $SourceSqlInstance return } } # Loop through each of the databases foreach ($db in $DatabaseCollection) { # Check the status of the database if ($db.RecoveryModel -ne 'Full') { $setupResult = "Failed" $comment = "Database $db is not in FULL recovery mode" Stop-Function -Message "Database $db is not in FULL recovery mode" -Target $SourceSqlInstance -Continue } # Set the intital destination database $SecondaryDatabase = $db.Name # Set the database prefix if ($SecondaryDatabasePrefix) { $SecondaryDatabase = "$SecondaryDatabasePrefix$($db.Name)" } # Set the database suffix if ($SecondaryDatabaseSuffix) { $SecondaryDatabase += $SecondaryDatabaseSuffix } # Check is the database is already initialized a check if the database exists on the secondary instance if ($NoInitialization -and ($DestinationServer.Databases.Name -notcontains $SecondaryDatabase)) { $setupResult = "Failed" $comment = "Database $SecondaryDatabase needs to be initialized before log shipping setting can continue" Stop-Function -Message "Database $SecondaryDatabase needs to be initialized before log shipping setting can continue." -Target $SourceSqlInstance -Continue } # Check the local backup path if ($LocalPath) { if ($LocalPath.EndsWith("\")) { $DatabaseLocalPath = "$LocalPath$($db.Name)" } else { $DatabaseLocalPath = "$LocalPath\$($db.Name)" } } else { $LocalPath = $SharedPath if ($LocalPath.EndsWith("\")) { $DatabaseLocalPath = "$LocalPath$($db.Name)" } else { $DatabaseLocalPath = "$LocalPath\$($db.Name)" } } Write-Message -Message "Backup local path set to $DatabaseLocalPath." -Level Verbose # Setting the backup network path for the database if ($SharedPath.EndsWith("\")) { $DatabaseSharedPath = "$SharedPath$($db.Name)" } else { $DatabaseSharedPath = "$SharedPath\$($db.Name)" } Write-Message -Message "Backup network path set to $DatabaseSharedPath." -Level Verbose # Checking if the database network path exists if ($setupResult -ne 'Failed') { Write-Message -Message "Testing database backup network path $DatabaseSharedPath" -Level Verbose if ((Test-DbaPath -Path $DatabaseSharedPath -SqlInstance $SourceSqlInstance -SqlCredential $SourceCredential) -ne $true) { # To to create the backup directory for the database try { Write-Message -Message "Database backup network path $DatabaseSharedPath not found. Trying to create it.." -Level Verbose Invoke-Command2 -Credential $SourceCredential -ScriptBlock { Write-Message -Message "Creating backup folder $DatabaseSharedPath" -Level Verbose $null = New-Item -Path $DatabaseSharedPath -ItemType Directory -Credential $SourceCredential -Force:$Force } } catch { $setupResult = "Failed" $comment = "Something went wrong creating the backup directory" Stop-Function -Message "Something went wrong creating the backup directory" -ErrorRecord $_ -Target $SourceSqlInstance -Continue } } } # Check if the backup job name is set if ($BackupJob) { $DatabaseBackupJob = "$($BackupJob)$($db.Name)" } else { $DatabaseBackupJob = "LSBackup_$($db.Name)" } Write-Message -Message "Backup job name set to $DatabaseBackupJob" -Level Verbose # Check if the backup job schedule name is set if ($BackupSchedule) { $DatabaseBackupSchedule = "$($BackupSchedule)$($db.Name)" } else { $DatabaseBackupSchedule = "LSBackupSchedule_$($db.Name)" } Write-Message -Message "Backup job schedule name set to $DatabaseBackupSchedule" -Level Verbose # Check if secondary database is present on secondary instance if (-not $Force -and -not $NoInitialization -and ($DestinationServer.Databases[$SecondaryDatabase].Status -ne 'Restoring') -and ($DestinationServer.Databases.Name -contains $SecondaryDatabase)) { $setupResult = "Failed" $comment = "Secondary database already exists on instance" Stop-Function -Message "Secondary database already exists on instance $destInstance." -ErrorRecord $_ -Target $destInstance -Continue } # Check if the secondary database needs to be initialized if ($setupResult -ne 'Failed') { if (-not $NoInitialization) { # Check if the secondary database exists on the secondary instance if ($DestinationServer.Databases.Name -notcontains $SecondaryDatabase) { # Check if force is being used and no option to generate the full backup is set if ($Force -and -not ($GenerateFullBackup -or $UseExistingFullBackup)) { # Set the option to generate a full backup Write-Message -Message "Set option to initialize secondary database with full backup" -Level Verbose $GenerateFullBackup = $true } elseif (-not $Force -and -not $GenerateFullBackup -and -not $UseExistingFullBackup -and -not $UseBackupFolder) { # Set up the confirm part $message = "The database $SecondaryDatabase does not exist on instance $destInstance. `nDo you want to initialize it by generating a full backup?" $choiceYes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes", "Answer Yes." $choiceNo = New-Object System.Management.Automation.Host.ChoiceDescription "&No", "Answer No." $options = [System.Management.Automation.Host.ChoiceDescription[]]($choiceYes, $choiceNo) $result = $host.ui.PromptForChoice($title, $message, $options, 0) # Check the result from the confirm switch ($result) { # If yes 0 { # Set the option to generate a full backup Write-Message -Message "Set option to initialize secondary database with full backup." -Level Verbose $GenerateFullBackup = $true } 1 { $setupResult = "Failed" $comment = "The database is not initialized on the secondary instance" Stop-Function -Message "The database is not initialized on the secondary instance. `nPlease initialize the database on the secondary instance, use -GenerateFullbackup or use -Force." -Target $destInstance return } } # switch } } } } # Check the parameters for initialization of the secondary database if (-not $NoInitialization -and ($GenerateFullBackup -or $UseExistingFullBackup -or $UseBackupFolder)) { # Check if the restore data and log folder are set if ($setupResult -ne 'Failed') { if (-not $RestoreDataFolder -or -not $RestoreLogFolder) { Write-Message -Message "Restore data folder or restore log folder are not set. Using server defaults" -Level Verbose # Get the default data folder if (-not $RestoreDataFolder) { $DatabaseRestoreDataFolder = $DestinationServer.DefaultFile } else { # Set the restore data folder if ($RestoreDataFolder.EndsWith("\")) { $DatabaseRestoreDataFolder = "$RestoreDataFolder$($db.Name)" } else { $DatabaseRestoreDataFolder = "$RestoreDataFolder\$($db.Name)" } } Write-Message -Message "Restore data folder set to $DatabaseRestoreDataFolder" -Level Verbose # Get the default log folder if (-not $RestoreLogFolder) { $DatabaseRestoreLogFolder = $DestinationServer.DefaultLog } Write-Message -Message "Restore log folder set to $DatabaseRestoreLogFolder" -Level Verbose # Check if the restore data folder exists Write-Message -Message "Testing database restore data path $DatabaseRestoreDataFolder" -Level Verbose if ((Test-DbaPath -Path $DatabaseRestoreDataFolder -SqlInstance $destInstance -SqlCredential $DestinationCredential) -ne $true) { if ($PSCmdlet.ShouldProcess($DestinationServerName, "Creating database restore data folder $DatabaseRestoreDataFolder on $DestinationServerName")) { # Try creating the data folder try { Invoke-Command2 -Credential $DestinationCredential -ScriptBlock { Write-Message -Message "Creating data folder $DatabaseRestoreDataFolder" -Level Verbose $null = New-Item -Path $DatabaseRestoreDataFolder -ItemType Directory -Credential $DestinationCredential -Force:$Force } } catch { $setupResult = "Failed" $comment = "Something went wrong creating the restore data directory" Stop-Function -Message "Something went wrong creating the restore data directory" -ErrorRecord $_ -Target $SourceSqlInstance -Continue } } } # Check if the restore log folder exists Write-Message -Message "Testing database restore log path $DatabaseRestoreLogFolder" -Level Verbose if ((Test-DbaPath -Path $DatabaseRestoreLogFolder -SqlInstance $destInstance -SqlCredential $DestinationCredential) -ne $true) { if ($PSCmdlet.ShouldProcess($DestinationServerName, "Creating database restore log folder $DatabaseRestoreLogFolder on $DestinationServerName")) { # Try creating the log folder try { Write-Message -Message "Restore log folder $DatabaseRestoreLogFolder not found. Trying to create it.." -Level Verbose Invoke-Command2 -Credential $DestinationCredential -ScriptBlock { Write-Message -Message "Restore log folder $DatabaseRestoreLogFolder not found. Trying to create it.." -Level Verbose $null = New-Item -Path $DatabaseRestoreLogFolder -ItemType Directory -Credential $DestinationCredential -Force:$Force } } catch { $setupResult = "Failed" $comment = "Something went wrong creating the restore log directory" Stop-Function -Message "Something went wrong creating the restore log directory" -ErrorRecord $_ -Target $SourceSqlInstance -Continue } } } } } # Check if the full backup path can be reached if ($setupResult -ne 'Failed') { if ($FullBackupPath) { Write-Message -Message "Testing full backup path $FullBackupPath" -Level Verbose if ((Test-DbaPath -Path $FullBackupPath -SqlInstance $destInstance -SqlCredential $DestinationCredential) -ne $true) { $setupResult = "Failed" $comment = "The path to the full backup could not be reached" Stop-Function -Message ("The path to the full backup could not be reached. Check the path and/or the crdential") -ErrorRecord $_ -Target $destInstance -Continue } $BackupPath = $FullBackupPath } elseif ($UseBackupFolder.Length -ge 1) { Write-Message -Message "Testing backup folder $UseBackupFolder" -Level Verbose if ((Test-DbaPath -Path $UseBackupFolder -SqlInstance $destInstance -SqlCredential $DestinationCredential) -ne $true) { $setupResult = "Failed" $comment = "The path to the backup folder could not be reached" Stop-Function -Message ("The path to the backup folder could not be reached. Check the path and/or the crdential") -ErrorRecord $_ -Target $destInstance -Continue } $BackupPath = $UseBackupFolder } elseif ($UseExistingFullBackup) { Write-Message -Message "No path to the full backup is set. Trying to retrieve the last full backup for $db from $SourceSqlInstance" -Level Verbose # Get the last full backup $LastBackup = Get-DbaDbBackupHistory -SqlInstance $SourceSqlInstance -Database $($db.Name) -LastFull -SqlCredential $SourceSqlCredential # Check if there was a last backup if ($null -ne $LastBackup) { # Test the path to the backup Write-Message -Message "Testing last backup path $(($LastBackup[-1]).Path[-1])" -Level Verbose if ((Test-DbaPath -Path ($LastBackup[-1]).Path[-1] -SqlInstance $SourceSqlInstance -SqlCredential $SourceCredential) -ne $true) { $setupResult = "Failed" $comment = "The full backup could not be found" Stop-Function -Message "The full backup could not be found on $($LastBackup.Path). Check path and/or credentials" -ErrorRecord $_ -Target $destInstance -Continue } # Check if the source for the last full backup is remote and the backup is on a shared location elseif (($LastBackup.Computername -ne $SourceServerName) -and (($LastBackup[-1]).Path[-1].StartsWith('\\') -eq $false)) { $setupResult = "Failed" $comment = "The last full backup is not located on shared location" Stop-Function -Message "The last full backup is not located on shared location. `n$($_.Exception.Message)" -ErrorRecord $_ -Target $destInstance -Continue } else { #$FullBackupPath = $LastBackup.Path $BackupPath = $LastBackup.Path Write-Message -Message "Full backup found for $db. Path $BackupPath" -Level Verbose } } else { Write-Message -Message "No Full backup found for $db." -Level Verbose } } } } # Set the copy destination folder to include the database name if ($CopyDestinationFolder.EndsWith("\")) { $DatabaseCopyDestinationFolder = "$CopyDestinationFolder$($db.Name)" } else { $DatabaseCopyDestinationFolder = "$CopyDestinationFolder\$($db.Name)" } Write-Message -Message "Copy destination folder set to $DatabaseCopyDestinationFolder." -Level Verbose # Check if the copy job name is set if ($CopyJob) { $DatabaseCopyJob = "$($CopyJob)$($db.Name)" } else { $DatabaseCopyJob = "LSCopy_$($SourceServerName)_$($db.Name)" } Write-Message -Message "Copy job name set to $DatabaseCopyJob" -Level Verbose # Check if the copy job schedule name is set if ($CopySchedule) { $DatabaseCopySchedule = "$($CopySchedule)$($db.Name)" } else { $DatabaseCopySchedule = "LSCopySchedule_$($SourceServerName)_$($db.Name)" Write-Message -Message "Copy job schedule name set to $DatabaseCopySchedule" -Level Verbose } # Check if the copy destination folder exists if ($setupResult -ne 'Failed') { Write-Message -Message "Testing database copy destination path $DatabaseCopyDestinationFolder" -Level Verbose if ((Test-DbaPath -Path $DatabaseCopyDestinationFolder -SqlInstance $destInstance -SqlCredential $DestinationCredential) -ne $true) { if ($PSCmdlet.ShouldProcess($DestinationServerName, "Creating copy destination folder on $DestinationServerName")) { try { Invoke-Command2 -Credential $DestinationCredential -ScriptBlock { Write-Message -Message "Copy destination folder $DatabaseCopyDestinationFolder not found. Trying to create it.. ." -Level Verbose $null = New-Item -Path $DatabaseCopyDestinationFolder -ItemType Directory -Credential $DestinationCredential -Force:$Force } } catch { $setupResult = "Failed" $comment = "Something went wrong creating the database copy destination folder" Stop-Function -Message "Something went wrong creating the database copy destination folder. `n$($_.Exception.Message)" -ErrorRecord $_ -Target $DestinationServerName -Continue } } } } # Check if the restore job name is set if ($RestoreJob) { $DatabaseRestoreJob = "$($RestoreJob)$($db.Name)" } else { $DatabaseRestoreJob = "LSRestore_$($SourceServerName)_$($db.Name)" } Write-Message -Message "Restore job name set to $DatabaseRestoreJob" -Level Verbose # Check if the restore job schedule name is set if ($RestoreSchedule) { $DatabaseRestoreSchedule = "$($RestoreSchedule)$($db.Name)" } else { $DatabaseRestoreSchedule = "LSRestoreSchedule_$($SourceServerName)_$($db.Name)" } Write-Message -Message "Restore job schedule name set to $DatabaseRestoreSchedule" -Level Verbose # If the database needs to be backed up first if ($setupResult -ne 'Failed') { if ($GenerateFullBackup) { if ($PSCmdlet.ShouldProcess($SourceSqlInstance, "Backing up database $db")) { Write-Message -Message "Generating full backup." -Level Verbose Write-Message -Message "Backing up database $db to $DatabaseSharedPath" -Level Verbose try { $Timestamp = Get-Date -format "yyyyMMddHHmmss" $LastBackup = Backup-DbaDatabase -SqlInstance $SourceSqlInstance ` -SqlCredential $SourceSqlCredential ` -BackupDirectory $DatabaseSharedPath ` -BackupFileName "FullBackup_$($db.Name)_PreLogShipping_$Timestamp.bak" ` -Database $($db.Name) ` -Type Full Write-Message -Message "Backup completed." -Level Verbose # Get the last full backup path #$FullBackupPath = $LastBackup.BackupPath $BackupPath = $LastBackup.BackupPath Write-Message -Message "Backup is located at $BackupPath" -Level Verbose } catch { $setupResult = "Failed" $comment = "Something went wrong generating the full backup" Stop-Function -Message "Something went wrong generating the full backup" -ErrorRecord $_ -Target $DestinationServerName -Continue } } } } # Check of the MonitorServerSecurityMode value is of type string and set the integer value if ($PrimaryMonitorServerSecurityMode -notin 0, 1) { $PrimaryMonitorServerSecurityMode = switch ($PrimaryMonitorServerSecurityMode) { "SQLSERVER" { 0 } "WINDOWS" { 1 } default { 1 } } } # Check the primary monitor server if ($Force -and (-not $PrimaryMonitorServer -or [string]$PrimaryMonitorServer -eq '' -or $null -eq $PrimaryMonitorServer)) { Write-Message -Message "Setting monitor server for primary server to $SourceSqlInstance." -Level Verbose $PrimaryMonitorServer = $SourceSqlInstance } # Check the PrimaryMonitorServerSecurityMode if it's SQL Server authentication if ($PrimaryMonitorServerSecurityMode -eq 0) { if ($PrimaryMonitorServerLogin) { $setupResult = "Failed" $comment = "The PrimaryMonitorServerLogin cannot be empty" Stop-Function -Message "The PrimaryMonitorServerLogin cannot be empty when using SQL Server authentication." -Target $SourceSqlInstance -Continue } if ($PrimaryMonitorServerPassword) { $setupResult = "Failed" $comment = "The PrimaryMonitorServerPassword cannot be empty" Stop-Function -Message "The PrimaryMonitorServerPassword cannot be empty when using SQL Server authentication." -Target $ -Continue } } # Check of the SecondaryMonitorServerSecurityMode value is of type string and set the integer value if ($SecondaryMonitorServerSecurityMode -notin 0, 1) { $SecondaryMonitorServerSecurityMode = switch ($SecondaryMonitorServerSecurityMode) { "SQLSERVER" { 0 } "WINDOWS" { 1 } default { 1 } } } # Check the secondary monitor server if ($Force -and (-not $SecondaryMonitorServer -or [string]$SecondaryMonitorServer -eq '' -or $null -eq $SecondaryMonitorServer)) { Write-Message -Message "Setting secondary monitor server for $destInstance to $SourceSqlInstance." -Level Verbose $SecondaryMonitorServer = $SourceSqlInstance } # Check the MonitorServerSecurityMode if it's SQL Server authentication if ($SecondaryMonitorServerSecurityMode -eq 0) { if ($SecondaryMonitorServerLogin) { $setupResult = "Failed" $comment = "The SecondaryMonitorServerLogin cannot be empty" Stop-Function -Message "The SecondaryMonitorServerLogin cannot be empty when using SQL Server authentication." -Target $SourceSqlInstance -Continue } if ($SecondaryMonitorServerPassword) { $setupResult = "Failed" $comment = "The SecondaryMonitorServerPassword cannot be empty" Stop-Function -Message "The SecondaryMonitorServerPassword cannot be empty when using SQL Server authentication." -Target $SourceSqlInstance -Continue } } # Now that all the checks have been done we can start with the fun stuff ! # Restore the full backup if ($setupResult -ne 'Failed') { if ($PSCmdlet.ShouldProcess($destInstance, "Restoring database $db to $SecondaryDatabase on $destInstance")) { if ($GenerateFullBackup -or $UseExistingFullBackup -or $UseBackupFolder) { try { Write-Message -Message "Start database restore" -Level Verbose if ($NoRecovery -or (-not $Standby)) { if ($Force) { $null = Restore-DbaDatabase -SqlInstance $destInstance ` -SqlCredential $DestinationSqlCredential ` -Path $BackupPath ` -DestinationFilePrefix $SecondaryDatabasePrefix ` -DestinationFileSuffix $SecondaryDatabaseSuffix ` -DestinationDataDirectory $DatabaseRestoreDataFolder ` -DestinationLogDirectory $DatabaseRestoreLogFolder ` -DatabaseName $SecondaryDatabase ` -DirectoryRecurse ` -NoRecovery ` -WithReplace } else { $null = Restore-DbaDatabase -SqlInstance $destInstance ` -SqlCredential $DestinationSqlCredential ` -Path $BackupPath ` -DestinationFilePrefix $SecondaryDatabasePrefix ` -DestinationFileSuffix $SecondaryDatabaseSuffix ` -DestinationDataDirectory $DatabaseRestoreDataFolder ` -DestinationLogDirectory $DatabaseRestoreLogFolder ` -DatabaseName $SecondaryDatabase ` -DirectoryRecurse ` -NoRecovery } } # If the database needs to be in standby if ($Standby) { # Setup the path to the standby file $StandbyDirectory = "$DatabaseCopyDestinationFolder" # Check if credentials need to be used if ($DestinationSqlCredential) { $null = Restore-DbaDatabase -SqlInstance $destInstance ` -SqlCredential $DestinationSqlCredential ` -Path $BackupPath ` -DestinationFilePrefix $SecondaryDatabasePrefix ` -DestinationFileSuffix $SecondaryDatabaseSuffix ` -DestinationDataDirectory $DatabaseRestoreDataFolder ` -DestinationLogDirectory $DatabaseRestoreLogFolder ` -DatabaseName $SecondaryDatabase ` -DirectoryRecurse ` -StandbyDirectory $StandbyDirectory } else { $null = Restore-DbaDatabase -SqlInstance $destInstance ` -Path $BackupPath ` -DestinationFilePrefix $SecondaryDatabasePrefix ` -DestinationFileSuffix $SecondaryDatabaseSuffix ` -DestinationDataDirectory $DatabaseRestoreDataFolder ` -DestinationLogDirectory $DatabaseRestoreLogFolder ` -DatabaseName $SecondaryDatabase ` -DirectoryRecurse ` -StandbyDirectory $StandbyDirectory } } } catch { $setupResult = "Failed" $comment = "Something went wrong restoring the secondary database" Stop-Function -Message "Something went wrong restoring the secondary database" -ErrorRecord $_ -Target $SourceSqlInstance -Continue } Write-Message -Message "Restore completed." -Level Verbose } } } #region Set up log shipping on the primary instance # Set up log shipping on the primary instance if ($setupResult -ne 'Failed') { if ($PSCmdlet.ShouldProcess($SourceSqlInstance, "Configuring logshipping for primary database $db on $SourceSqlInstance")) { try { Write-Message -Message "Configuring logshipping for primary database" -Level Verbose New-DbaLogShippingPrimaryDatabase -SqlInstance $SourceSqlInstance ` -SqlCredential $SourceSqlCredential ` -Database $($db.Name) ` -BackupDirectory $DatabaseLocalPath ` -BackupJob $DatabaseBackupJob ` -BackupRetention $BackupRetention ` -BackupShare $DatabaseSharedPath ` -BackupThreshold $BackupThreshold ` -CompressBackup:$BackupCompression ` -HistoryRetention $HistoryRetention ` -MonitorServer $PrimaryMonitorServer ` -MonitorServerSecurityMode $PrimaryMonitorServerSecurityMode ` -MonitorCredential $PrimaryMonitorCredential ` -ThresholdAlertEnabled:$PrimaryThresholdAlertEnabled ` -Force:$Force # Check if the backup job needs to be enabled or disabled if ($BackupScheduleDisabled) { $null = Set-DbaAgentJob -SqlInstance $SourceSqlInstance -SqlCredential $SourceSqlCredential -Job $DatabaseBackupJob -Disabled Write-Message -Message "Disabling backup job $DatabaseBackupJob" -Level Verbose } else { $null = Set-DbaAgentJob -SqlInstance $SourceSqlInstance -SqlCredential $SourceSqlCredential -Job $DatabaseBackupJob -Enabled Write-Message -Message "Enabling backup job $DatabaseBackupJob" -Level Verbose } Write-Message -Message "Create backup job schedule $DatabaseBackupSchedule" -Level Verbose #Variable $BackupJobSchedule marked as unused by PSScriptAnalyzer replaced with $null for catching output $null = New-DbaAgentSchedule -SqlInstance $SourceSqlInstance ` -SqlCredential $SourceSqlCredential ` -Job $DatabaseBackupJob ` -Schedule $DatabaseBackupSchedule ` -FrequencyType $BackupScheduleFrequencyType ` -FrequencyInterval $BackupScheduleFrequencyInterval ` -FrequencySubdayType $BackupScheduleFrequencySubdayType ` -FrequencySubdayInterval $BackupScheduleFrequencySubdayInterval ` -FrequencyRelativeInterval $BackupScheduleFrequencyRelativeInterval ` -FrequencyRecurrenceFactor $BackupScheduleFrequencyRecurrenceFactor ` -StartDate $BackupScheduleStartDate ` -EndDate $BackupScheduleEndDate ` -StartTime $BackupScheduleStartTime ` -EndTime $BackupScheduleEndTime ` -Force:$Force Write-Message -Message "Configuring logshipping from primary to secondary database." -Level Verbose New-DbaLogShippingPrimarySecondary -SqlInstance $SourceSqlInstance ` -SqlCredential $SourceSqlCredential ` -PrimaryDatabase $($db.Name) ` -SecondaryDatabase $SecondaryDatabase ` -SecondaryServer $destInstance ` -SecondarySqlCredential $DestinationSqlCredential } catch { $setupResult = "Failed" $comment = "Something went wrong setting up log shipping for primary instance" Stop-Function -Message "Something went wrong setting up log shipping for primary instance" -ErrorRecord $_ -Target $SourceSqlInstance -Continue } } } #endregion Set up log shipping on the primary instance #region Set up log shipping on the secondary instance # Set up log shipping on the secondary instance if ($setupResult -ne 'Failed') { if ($PSCmdlet.ShouldProcess($destInstance, "Configuring logshipping for secondary database $SecondaryDatabase on $destInstance")) { try { Write-Message -Message "Configuring logshipping from secondary database $SecondaryDatabase to primary database $db." -Level Verbose New-DbaLogShippingSecondaryPrimary -SqlInstance $destInstance ` -SqlCredential $DestinationSqlCredential ` -BackupSourceDirectory $DatabaseSharedPath ` -BackupDestinationDirectory $DatabaseCopyDestinationFolder ` -CopyJob $DatabaseCopyJob ` -FileRetentionPeriod $BackupRetention ` -MonitorServer $SecondaryMonitorServer ` -MonitorServerSecurityMode $SecondaryMonitorServerSecurityMode ` -MonitorCredential $SecondaryMonitorCredential ` -PrimaryServer $SourceSqlInstance ` -PrimaryDatabase $($db.Name) ` -RestoreJob $DatabaseRestoreJob ` -Force:$Force Write-Message -Message "Create copy job schedule $DatabaseCopySchedule" -Level Verbose #Variable $CopyJobSchedule marked as unused by PSScriptAnalyzer replaced with $null for catching output $null = New-DbaAgentSchedule -SqlInstance $destInstance ` -SqlCredential $DestinationSqlCredential ` -Job $DatabaseCopyJob ` -Schedule $DatabaseCopySchedule ` -FrequencyType $CopyScheduleFrequencyType ` -FrequencyInterval $CopyScheduleFrequencyInterval ` -FrequencySubdayType $CopyScheduleFrequencySubdayType ` -FrequencySubdayInterval $CopyScheduleFrequencySubdayInterval ` -FrequencyRelativeInterval $CopyScheduleFrequencyRelativeInterval ` -FrequencyRecurrenceFactor $CopyScheduleFrequencyRecurrenceFactor ` -StartDate $CopyScheduleStartDate ` -EndDate $CopyScheduleEndDate ` -StartTime $CopyScheduleStartTime ` -EndTime $CopyScheduleEndTime ` -Force:$Force Write-Message -Message "Create restore job schedule $DatabaseRestoreSchedule" -Level Verbose #Variable $RestoreJobSchedule marked as unused by PSScriptAnalyzer replaced with $null for catching output $null = New-DbaAgentSchedule -SqlInstance $destInstance ` -SqlCredential $DestinationSqlCredential ` -Job $DatabaseRestoreJob ` -Schedule $DatabaseRestoreSchedule ` -FrequencyType $RestoreScheduleFrequencyType ` -FrequencyInterval $RestoreScheduleFrequencyInterval ` -FrequencySubdayType $RestoreScheduleFrequencySubdayType ` -FrequencySubdayInterval $RestoreScheduleFrequencySubdayInterval ` -FrequencyRelativeInterval $RestoreScheduleFrequencyRelativeInterval ` -FrequencyRecurrenceFactor $RestoreScheduleFrequencyRecurrenceFactor ` -StartDate $RestoreScheduleStartDate ` -EndDate $RestoreScheduleEndDate ` -StartTime $RestoreScheduleStartTime ` -EndTime $RestoreScheduleEndTime ` -Force:$Force Write-Message -Message "Configuring logshipping for secondary database." -Level Verbose New-DbaLogShippingSecondaryDatabase -SqlInstance $destInstance ` -SqlCredential $DestinationSqlCredential ` -SecondaryDatabase $SecondaryDatabase ` -PrimaryServer $SourceSqlInstance ` -PrimaryDatabase $($db.Name) ` -RestoreDelay $RestoreDelay ` -RestoreMode $DatabaseStatus ` -DisconnectUsers:$DisconnectUsers ` -RestoreThreshold $RestoreThreshold ` -ThresholdAlertEnabled:$SecondaryThresholdAlertEnabled ` -HistoryRetention $HistoryRetention ` -MonitorServer $SecondaryMonitorServer ` -MonitorServerSecurityMode $SecondaryMonitorServerSecurityMode ` -MonitorCredential $SecondaryMonitorCredential # Check if the copy job needs to be enabled or disabled if ($CopyScheduleDisabled) { $null = Set-DbaAgentJob -SqlInstance $destInstance -SqlCredential $DestinationSqlCredential -Job $DatabaseCopyJob -Disabled } else { $null = Set-DbaAgentJob -SqlInstance $destInstance -SqlCredential $DestinationSqlCredential -Job $DatabaseCopyJob -Enabled } # Check if the restore job needs to be enabled or disabled if ($RestoreScheduleDisabled) { $null = Set-DbaAgentJob -SqlInstance $destInstance -SqlCredential $DestinationSqlCredential -Job $DatabaseRestoreJob -Disabled } else { $null = Set-DbaAgentJob -SqlInstance $destInstance -SqlCredential $DestinationSqlCredential -Job $DatabaseRestoreJob -Enabled } } catch { $setupResult = "Failed" $comment = "Something went wrong setting up log shipping for secondary instance" Stop-Function -Message "Something went wrong setting up log shipping for secondary instance.`n$($_.Exception.Message)" -ErrorRecord $_ -Target $destInstance -Continue } } } #endregion Set up log shipping on the secondary instance Write-Message -Message "Completed configuring log shipping for database $db" -Level Verbose [PSCustomObject]@{ PrimaryInstance = $SourceServer.DomainInstanceName SecondaryInstance = $DestinationServer.DomainInstanceName PrimaryDatabase = $($db.Name) SecondaryDatabase = $SecondaryDatabase Result = $setupResult Comment = $comment } } # for each database } # end for each destination server } # end process end { Write-Message -Message "Finished setting up log shipping." -Level Verbose } } # SIG # Begin signature block # MIIZewYJKoZIhvcNAQcCoIIZbDCCGWgCAQExCzAJBgUrDgMCGgUAMGkGCisGAQQB # gjcCAQSgWzBZMDQGCisGAQQBgjcCAR4wJgIDAQAABBAfzDtgWUsITrck0sYpfvNR # AgEAAgEAAgEAAgEAAgEAMCEwCQYFKw4DAhoFAAQUKe+u06ME6FTGtYJ1Ys8UfqGv # 1kmgghSJMIIE/jCCA+agAwIBAgIQDUJK4L46iP9gQCHOFADw3TANBgkqhkiG9w0B # AQsFADByMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYD # VQQLExB3d3cuZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFz # c3VyZWQgSUQgVGltZXN0YW1waW5nIENBMB4XDTIxMDEwMTAwMDAwMFoXDTMxMDEw # NjAwMDAwMFowSDELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJbmMu # MSAwHgYDVQQDExdEaWdpQ2VydCBUaW1lc3RhbXAgMjAyMTCCASIwDQYJKoZIhvcN # AQEBBQADggEPADCCAQoCggEBAMLmYYRnxYr1DQikRcpja1HXOhFCvQp1dU2UtAxQ # tSYQ/h3Ib5FrDJbnGlxI70Tlv5thzRWRYlq4/2cLnGP9NmqB+in43Stwhd4CGPN4 # bbx9+cdtCT2+anaH6Yq9+IRdHnbJ5MZ2djpT0dHTWjaPxqPhLxs6t2HWc+xObTOK # fF1FLUuxUOZBOjdWhtyTI433UCXoZObd048vV7WHIOsOjizVI9r0TXhG4wODMSlK # XAwxikqMiMX3MFr5FK8VX2xDSQn9JiNT9o1j6BqrW7EdMMKbaYK02/xWVLwfoYer # vnpbCiAvSwnJlaeNsvrWY4tOpXIc7p96AXP4Gdb+DUmEvQECAwEAAaOCAbgwggG0 # MA4GA1UdDwEB/wQEAwIHgDAMBgNVHRMBAf8EAjAAMBYGA1UdJQEB/wQMMAoGCCsG # AQUFBwMIMEEGA1UdIAQ6MDgwNgYJYIZIAYb9bAcBMCkwJwYIKwYBBQUHAgEWG2h0 # dHA6Ly93d3cuZGlnaWNlcnQuY29tL0NQUzAfBgNVHSMEGDAWgBT0tuEgHf4prtLk # YaWyoiWyyBc1bjAdBgNVHQ4EFgQUNkSGjqS6sGa+vCgtHUQ23eNqerwwcQYDVR0f # BGowaDAyoDCgLoYsaHR0cDovL2NybDMuZGlnaWNlcnQuY29tL3NoYTItYXNzdXJl # ZC10cy5jcmwwMqAwoC6GLGh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9zaGEyLWFz # c3VyZWQtdHMuY3JsMIGFBggrBgEFBQcBAQR5MHcwJAYIKwYBBQUHMAGGGGh0dHA6 # Ly9vY3NwLmRpZ2ljZXJ0LmNvbTBPBggrBgEFBQcwAoZDaHR0cDovL2NhY2VydHMu # ZGlnaWNlcnQuY29tL0RpZ2lDZXJ0U0hBMkFzc3VyZWRJRFRpbWVzdGFtcGluZ0NB # LmNydDANBgkqhkiG9w0BAQsFAAOCAQEASBzctemaI7znGucgDo5nRv1CclF0CiNH # o6uS0iXEcFm+FKDlJ4GlTRQVGQd58NEEw4bZO73+RAJmTe1ppA/2uHDPYuj1UUp4 # eTZ6J7fz51Kfk6ftQ55757TdQSKJ+4eiRgNO/PT+t2R3Y18jUmmDgvoaU+2QzI2h # F3MN9PNlOXBL85zWenvaDLw9MtAby/Vh/HUIAHa8gQ74wOFcz8QRcucbZEnYIpp1 # FUL1LTI4gdr0YKK6tFL7XOBhJCVPst/JKahzQ1HavWPWH1ub9y4bTxMd90oNcX6X # t/Q/hOvB46NJofrOp79Wz7pZdmGJX36ntI5nePk2mOHLKNpbh6aKLzCCBRowggQC # oAMCAQICEAMFu4YhsKFjX7/erhIE520wDQYJKoZIhvcNAQELBQAwcjELMAkGA1UE # BhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3LmRpZ2lj # ZXJ0LmNvbTExMC8GA1UEAxMoRGlnaUNlcnQgU0hBMiBBc3N1cmVkIElEIENvZGUg # U2lnbmluZyBDQTAeFw0yMDA1MTIwMDAwMDBaFw0yMzA2MDgxMjAwMDBaMFcxCzAJ # BgNVBAYTAlVTMREwDwYDVQQIEwhWaXJnaW5pYTEPMA0GA1UEBxMGVmllbm5hMREw # DwYDVQQKEwhkYmF0b29sczERMA8GA1UEAxMIZGJhdG9vbHMwggEiMA0GCSqGSIb3 # DQEBAQUAA4IBDwAwggEKAoIBAQC8v2N7q+O/vggBtpjmteofFo140k73JXQ5sOD6 # QLzjgija+scoYPxTmFSImnqtjfZFWmucAWsDiMVVro/6yGjsXmJJUA7oD5BlMdAK # fuiq4558YBOjjc0Bp3NbY5ZGujdCmsw9lqHRAVil6P1ZpAv3D/TyVVq6AjDsJY+x # rRL9iMc8YpD5tiAj+SsRSuT5qwPuW83ByRHqkaJ5YDJ/R82ZKh69AFNXoJ3xCJR+ # P7+pa8tbdSgRf25w4ZfYPy9InEvsnIRVZMeDjjuGvqr0/Mar73UI79z0NYW80yN/ # 7VzlrvV8RnniHWY2ib9ehZligp5aEqdV2/XFVPV4SKaJs8R9AgMBAAGjggHFMIIB # wTAfBgNVHSMEGDAWgBRaxLl7KgqjpepxA8Bg+S32ZXUOWDAdBgNVHQ4EFgQU8MCg # +7YDgENO+wnX3d96scvjniIwDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsG # AQUFBwMDMHcGA1UdHwRwMG4wNaAzoDGGL2h0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNv # bS9zaGEyLWFzc3VyZWQtY3MtZzEuY3JsMDWgM6Axhi9odHRwOi8vY3JsNC5kaWdp # Y2VydC5jb20vc2hhMi1hc3N1cmVkLWNzLWcxLmNybDBMBgNVHSAERTBDMDcGCWCG # SAGG/WwDATAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5jb20v # Q1BTMAgGBmeBDAEEATCBhAYIKwYBBQUHAQEEeDB2MCQGCCsGAQUFBzABhhhodHRw # Oi8vb2NzcC5kaWdpY2VydC5jb20wTgYIKwYBBQUHMAKGQmh0dHA6Ly9jYWNlcnRz # LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFNIQTJBc3N1cmVkSURDb2RlU2lnbmluZ0NB # LmNydDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCPzflwlQwf1jak # EqymPOc0nBxiY7F4FwcmL7IrTLhub6Pjg4ZYfiC79Akz5aNlqO+TJ0kqglkfnOsc # jfKQzzDwcZthLVZl83igzCLnWMo8Zk/D2d4ZLY9esFwqPNvuuVDrHvgh7H6DJ/zP # Vm5EOK0sljT0UQ6HQEwtouH5S8nrqCGZ8jKM/+DeJlm+rCAGGf7TV85uqsAn5JqD # En/bXE1AlyG1Q5YiXFGS5Sf0qS4Nisw7vRrZ6Qc4NwBty4cAYjzDPDixorWI8+FV # OUWKMdL7tV8i393/XykwsccCstBCp7VnSZN+4vgzjEJQql5uQfysjcW9rrb/qixp # csPTKYRHMIIFMDCCBBigAwIBAgIQBAkYG1/Vu2Z1U0O1b5VQCDANBgkqhkiG9w0B # AQsFADBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYD # VQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVk # IElEIFJvb3QgQ0EwHhcNMTMxMDIyMTIwMDAwWhcNMjgxMDIyMTIwMDAwWjByMQsw # CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu # ZGlnaWNlcnQuY29tMTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFzc3VyZWQgSUQg # Q29kZSBTaWduaW5nIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA # +NOzHH8OEa9ndwfTCzFJGc/Q+0WZsTrbRPV/5aid2zLXcep2nQUut4/6kkPApfmJ # 1DcZ17aq8JyGpdglrA55KDp+6dFn08b7KSfH03sjlOSRI5aQd4L5oYQjZhJUM1B0 # sSgmuyRpwsJS8hRniolF1C2ho+mILCCVrhxKhwjfDPXiTWAYvqrEsq5wMWYzcT6s # cKKrzn/pfMuSoeU7MRzP6vIK5Fe7SrXpdOYr/mzLfnQ5Ng2Q7+S1TqSp6moKq4Tz # rGdOtcT3jNEgJSPrCGQ+UpbB8g8S9MWOD8Gi6CxR93O8vYWxYoNzQYIH5DiLanMg # 0A9kczyen6Yzqf0Z3yWT0QIDAQABo4IBzTCCAckwEgYDVR0TAQH/BAgwBgEB/wIB # ADAOBgNVHQ8BAf8EBAMCAYYwEwYDVR0lBAwwCgYIKwYBBQUHAwMweQYIKwYBBQUH # AQEEbTBrMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wQwYI # KwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFz # c3VyZWRJRFJvb3RDQS5jcnQwgYEGA1UdHwR6MHgwOqA4oDaGNGh0dHA6Ly9jcmw0 # LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFzc3VyZWRJRFJvb3RDQS5jcmwwOqA4oDaG # NGh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFzc3VyZWRJRFJvb3RD # QS5jcmwwTwYDVR0gBEgwRjA4BgpghkgBhv1sAAIEMCowKAYIKwYBBQUHAgEWHGh0 # dHBzOi8vd3d3LmRpZ2ljZXJ0LmNvbS9DUFMwCgYIYIZIAYb9bAMwHQYDVR0OBBYE # FFrEuXsqCqOl6nEDwGD5LfZldQ5YMB8GA1UdIwQYMBaAFEXroq/0ksuCMS1Ri6en # IZ3zbcgPMA0GCSqGSIb3DQEBCwUAA4IBAQA+7A1aJLPzItEVyCx8JSl2qB1dHC06 # GsTvMGHXfgtg/cM9D8Svi/3vKt8gVTew4fbRknUPUbRupY5a4l4kgU4QpO4/cY5j # DhNLrddfRHnzNhQGivecRk5c/5CxGwcOkRX7uq+1UcKNJK4kxscnKqEpKBo6cSgC # PC6Ro8AlEeKcFEehemhor5unXCBc2XGxDI+7qPjFEmifz0DLQESlE/DmZAwlCEIy # sjaKJAL+L3J+HNdJRZboWR3p+nRka7LrZkPas7CM1ekN3fYBIM6ZMWM9CBoYs4Gb # T8aTEAb8B4H6i9r5gkn3Ym6hU/oSlBiFLpKR6mhsRDKyZqHnGKSaZFHvMIIFMTCC # BBmgAwIBAgIQCqEl1tYyG35B5AXaNpfCFTANBgkqhkiG9w0BAQsFADBlMQswCQYD # VQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGln # aWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0Ew # HhcNMTYwMTA3MTIwMDAwWhcNMzEwMTA3MTIwMDAwWjByMQswCQYDVQQGEwJVUzEV # MBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29t # MTEwLwYDVQQDEyhEaWdpQ2VydCBTSEEyIEFzc3VyZWQgSUQgVGltZXN0YW1waW5n # IENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvdAy7kvNj3/dqbqC # mcU5VChXtiNKxA4HRTNREH3Q+X1NaH7ntqD0jbOI5Je/YyGQmL8TvFfTw+F+CNZq # FAA49y4eO+7MpvYyWf5fZT/gm+vjRkcGGlV+Cyd+wKL1oODeIj8O/36V+/OjuiI+ # GKwR5PCZA207hXwJ0+5dyJoLVOOoCXFr4M8iEA91z3FyTgqt30A6XLdR4aF5FMZN # JCMwXbzsPGBqrC8HzP3w6kfZiFBe/WZuVmEnKYmEUeaC50ZQ/ZQqLKfkdT66mA+E # f58xFNat1fJky3seBdCEGXIX8RcG7z3N1k3vBkL9olMqT4UdxB08r8/arBD13ays # 6Vb/kwIDAQABo4IBzjCCAcowHQYDVR0OBBYEFPS24SAd/imu0uRhpbKiJbLIFzVu # MB8GA1UdIwQYMBaAFEXroq/0ksuCMS1Ri6enIZ3zbcgPMBIGA1UdEwEB/wQIMAYB # Af8CAQAwDgYDVR0PAQH/BAQDAgGGMBMGA1UdJQQMMAoGCCsGAQUFBwMIMHkGCCsG # AQUFBwEBBG0wazAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29t # MEMGCCsGAQUFBzAChjdodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNl # cnRBc3N1cmVkSURSb290Q0EuY3J0MIGBBgNVHR8EejB4MDqgOKA2hjRodHRwOi8v # Y3JsNC5kaWdpY2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURSb290Q0EuY3JsMDqg # OKA2hjRodHRwOi8vY3JsMy5kaWdpY2VydC5jb20vRGlnaUNlcnRBc3N1cmVkSURS # b290Q0EuY3JsMFAGA1UdIARJMEcwOAYKYIZIAYb9bAACBDAqMCgGCCsGAQUFBwIB # FhxodHRwczovL3d3dy5kaWdpY2VydC5jb20vQ1BTMAsGCWCGSAGG/WwHATANBgkq # hkiG9w0BAQsFAAOCAQEAcZUS6VGHVmnN793afKpjerN4zwY3QITvS4S/ys8DAv3F # p8MOIEIsr3fzKx8MIVoqtwU0HWqumfgnoma/Capg33akOpMP+LLR2HwZYuhegiUe # xLoceywh4tZbLBQ1QwRostt1AuByx5jWPGTlH0gQGF+JOGFNYkYkh2OMkVIsrymJ # 5Xgf1gsUpYDXEkdws3XVk4WTfraSZ/tTYYmo9WuWwPRYaQ18yAGxuSh1t5ljhSKM # Ycp5lH5Z/IwP42+1ASa2bKXuh1Eh5Fhgm7oMLSttosR+u8QlK0cCCHxJrhO24XxC # QijGGFbPQTS2Zl22dHv1VjMiLyI2skuiSpXY9aaOUjGCBFwwggRYAgEBMIGGMHIx # CzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3 # dy5kaWdpY2VydC5jb20xMTAvBgNVBAMTKERpZ2lDZXJ0IFNIQTIgQXNzdXJlZCBJ # RCBDb2RlIFNpZ25pbmcgQ0ECEAMFu4YhsKFjX7/erhIE520wCQYFKw4DAhoFAKB4 # MBgGCisGAQQBgjcCAQwxCjAIoAKAAKECgAAwGQYJKoZIhvcNAQkDMQwGCisGAQQB # gjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwGCisGAQQBgjcCARUwIwYJKoZIhvcNAQkE # MRYEFJo9nHBJfgSi0W1p8nqZrAHiatrvMA0GCSqGSIb3DQEBAQUABIIBAJqh4wx4 # 2tK7hXiOdPA79xCJ2evfDCuAXcyBlwQT4MKi5SQpxE15Ab5RkwSmEzj+u7taVJYq # n6nlkF7dkZoanCddvZAZZUULu/PDiJycLbWU6df7FXagLY7V4jx3VEIPTRI5Bsg+ # uVmy9li/yK80i1ym+hwXnZC38amYcVyfyFbWg1rIKdeOLo+l0yGp+2tvwVtXjXvZ # CdAD5gHiao80lBhVxdU/42jfBAmyXR7rDphn8NMyVSWIJgYLlZ4k6NQDV3vm8hxk # lMGC1dtcPY3jjFP5Znw88K3tc4h8lZ+Ri763PTJJ7shi8+Tkr76QnWtlf84hZRoO # cYG0ELxb9V1ZkD2hggIwMIICLAYJKoZIhvcNAQkGMYICHTCCAhkCAQEwgYYwcjEL # MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 # LmRpZ2ljZXJ0LmNvbTExMC8GA1UEAxMoRGlnaUNlcnQgU0hBMiBBc3N1cmVkIElE # IFRpbWVzdGFtcGluZyBDQQIQDUJK4L46iP9gQCHOFADw3TANBglghkgBZQMEAgEF # AKBpMBgGCSqGSIb3DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTIy # MDEwMzE4NDcyNlowLwYJKoZIhvcNAQkEMSIEINOh4EbKO5JaISR8lzVctP143wzW # Iu45QW+7ol+utGUFMA0GCSqGSIb3DQEBAQUABIIBALCbDcPa5V9nLBeGNH5fOc67 # SLcP3iRa+8XITJWQP46wbrdrWmjrgNEr0fQ8Tjb6jMOEQuFOY+53ILE3BFczplNG # N6o0jic1QXJdnpuatl89ZRn2AWdmhyxsM6rd/4sxuG/zB9DT46/7P4jPD562Ik5C # WFl5cde/GVWAjD83usphegodWDcW5KdBLiUeSNvt5HXPGFZ5m+X/5c+78TC+Rdrw # xLismCtzLNZnO4moq11nHkV1z8rd8e9L6TeDTMAiI+zriERJLkKUXT8AEE8NoGFd # Fx+Cn+gUpnMUXN3wmQCqMj7eEKixbZRCEwEpvThUToLlabjZBnkwEWw2/PfW73I= # SIG # End signature block |