If the Authentication Method in Umango is misconfigured (e.g., an incorrect LDAP or MFA setup), administrators may find themselves locked out of the system.
By removing the AuthenticationMethod entry from the database, Umango reverts to its default Windows/Domain Login state, allowing you to log back in and correct your settings.
Access to SQL Server Management Studio (SSMS).
Connectivity to the Umango database instance (e.g., .\SQLUMANGO).
Administrative permissions on the SQL instance.
This is the fastest and safest way to reset the setting without manually searching through table rows.
Open SQL Server Management Studio.
Click the New Query button in the top toolbar.
Copy and paste the following script into the query window:
/* Umango Authentication Reset Script Target: dbo.tbl_org_settings*/
USE [Umango]; -- Ensure this matches your database nameGO
BEGIN TRANSACTION;
-- 1. Identify and delete the AuthenticationMethod rowDELETE FROM [dbo].[tbl_org_settings]WHERE [name] = 'AuthenticationMethod';
-- 2. Verify the deletionIF @@ROWCOUNT = 1 BEGIN PRINT 'Success: AuthenticationMethod has been reset to default.'; COMMIT TRANSACTION; ENDELSE BEGIN PRINT 'Notice: AuthenticationMethod row not found or already deleted.'; ROLLBACK TRANSACTION; ENDGO
Press F5 or click Execute.
Restart the Umango Service (via services.msc) to apply the changes.
If you prefer to navigate the database manually:
In the Object Explorer, expand Databases > Umango > Tables.
Right-click dbo.tbl_org_settings and select Edit Top 200 Rows.
Locate the row where the name column is AuthenticationMethod.
Right-click the gray box at the far left of that row and select Delete.
Confirm the deletion and Restart the Umango Service.

Backup First: Before running any scripts or deleting rows, right-click your database and select Tasks > Back Up... to create a restore point.