Skip to content

Instantly share code, notes, and snippets.

@hawjeh
Created February 20, 2020 16:19
Show Gist options
  • Select an option

  • Save hawjeh/72ad4e6f1eddc8a9be1b049b67e8af52 to your computer and use it in GitHub Desktop.

Select an option

Save hawjeh/72ad4e6f1eddc8a9be1b049b67e8af52 to your computer and use it in GitHub Desktop.
Sitefinity - Reset User Password
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