-
Notifications
You must be signed in to change notification settings - Fork 841
Description
I have just downloaded the SQL Server 2025 Standard Dev Edition RTM as a testing platform and when trying to run the backup tasks we are getting the error "The value for the parameter @Encrypt is not supported." and a failure of each backup job. We are running the latest version of the Maintenance Solution
SQL Server version and edition
Microsoft SQL Server 2025 (RTM) - 17.0.1000.7 (X64) Oct 21 2025 12:05:57 Copyright (C) 2025 Microsoft Corporation Standard Developer Edition (64-bit) on Windows Server 2022 Standard 10.0 (Build 20348: ) (Hypervisor)
Version of the script
--// Source: https://ola.hallengren.com //--
--// License: https://ola.hallengren.com/license.html //--
--// GitHub: https://github.com/olahallengren/sql-server-maintenance-solution //--
--// Version: 2025-08-23 17:25:24 //--
What command are you executing?
EXECUTE [dbo].[DatabaseBackup]
@databases = 'SYSTEM_DATABASES',
@Directory = NULL,
@BackupType = 'FULL',
@verify = 'Y',
@Encrypt = 'Y',
@EncryptionAlgorithm = 'AES_256',
@ServerCertificate = 'BackupEncryptionCert20251202',
@Cleanuptime = 192,
@Checksum = 'Y',
@LogToTable = 'Y',
@NumberOfFiles = 4
What output are you getting?
The value for the parameter @Encrypt is not supported. [SQLSTATE 42000] (Error 50000)