Disabling MFA in Veeam Backup v12
To disable Multi-Factor Authentication (MFA) in Veeam Backup v12, follow these steps:
1. Open SQL Server Management Studio.
2. Connect to the Veeam Databases.
3. Execute the following command:
For Microsoft SQL:
“`sql
UPDATE [dbo].[Options] SET value = ‘False’ WHERE name = ‘GlobalMFA’
“`
For PostgreSQL:
“`sql
UPDATE Options SET value = ‘False’ WHERE name = ‘GlobalMFA’
“`

These commands will disable MFA within the Veeam Backup v12 configuration.










