SqlBackupRestoreTools.psd1
|
@{ RootModule = 'SqlBackupRestoreTools.psm1' ModuleVersion = '2.0.13' GUID = '78575d6b-ce20-4124-92bc-3396f257eb29' Author = 'Mike Fleming (@BelugaMike)' CompanyName = '' Copyright = '(c) 2026 Mike Fleming' Description = 'SQL Server database backup/restore helper module with optional SQL-backed logging and email notifications.' PowerShellVersion = '5.1' RequiredModules = @('SqlServer') FunctionsToExport = @( 'BackupAndRestore', 'Backup-DbalDatabase', 'Clear-DBALibraryConfig', 'Get-DBALibraryConfig', 'Restore-DbalDatabase', 'Set-DBALibraryConfig' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() PrivateData = @{ PSData = @{ Tags = @('SQLServer','DBA','Backup','Restore') ProjectUri = 'https://github.com/MikeyMing/powershell-sql' LicenseUri = 'https://github.com/MikeyMing/powershell-sql/blob/main/LICENSE' ReleaseNotes = '2.0.13: Apply Invoke-Sqlcmd TLS defaults (TrustServerCertificate/Encrypt=Optional when available) in Windows PowerShell too to avoid untrusted cert login failures (opt-out via SQLBACKUPRESTORETOOLS_DISABLE_TLS_DEFAULTS). 2.0.12: Fix import in Windows PowerShell 5.1 (avoid $IsWindows under strict mode). See CHANGELOG.md.' } } } |