Created
February 20, 2020 16:19
-
-
Save hawjeh/72ad4e6f1eddc8a9be1b049b67e8af52 to your computer and use it in GitHub Desktop.
Sitefinity - Reset User Password
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| USE <your_db> | |
| GO | |
| UPDATE [dbo].[sf_users] | |
| SET [user_name] = 'admin' | |
| ,[salt] = null | |
| ,[password_format] = 0 | |
| ,[passwd] = 'Test123' | |
| WHERE user_name = <your_reset_user_name> | |
| GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment