You are here: Sysadmins of the North » Web applications » Umbraco » Umbraco CMS admin password reset

Umbraco CMS admin password reset

If you forgot your Umbraco admin password, use the following SQL query to reset your Umbraco admin password in SQL Server Management Studio (SSMS) or MySQL…

Reset your Umbraco password with this SQL statement (in phpMyAdmin or MySQL shell):

UPDATE UMBRACOUSER
SET userdisabled=0, userLogin='admin',
  userPassword='bnWxWyFdCueCcKrqniYK9iAS+7E='
WHERE id=0;Code language: SQL (Structured Query Language) (sql)

This query resets your password to default.

In SQL Server Management Studio, use:

-- UPDATE [database].[schema].[umbracoUser] set userdisabled=0, userLogin='admin', userPassword='bnWxWyFdCueCcKrqniYK9iAS+7E=' where id=0
UPDATE [databasename].[dbo].[umbracoUser] set userdisabled=0, userLogin='admin', userPassword='bnWxWyFdCueCcKrqniYK9iAS+7E=' where id=0Code language: SQL (Structured Query Language) (sql)

Umbraco admin reset .NET project
Richard Soeteman created an Umbraco Admin reset project which sets the admin username to Admin and sets the password to Admin1234!. You can find the project here.

More password resets: WordPress

Oh my! Lost your WordPress password?

Are you looking for rock solid, eco-friendly, Umbraco hosting? Look no further! UmbHost is an Umbraco Registered Partner offering hosting services for websites and businesses of all sizes.

Show Your Support

donate with Paypal

If you want to step in to help me cover the costs for running this website, that would be awesome. Just use this link to donate a cup of coffee ☕($10 USD or €10 EUR for example). And please share the love and help others make use of this website. Thank you very much! <3 ❤️

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top