How to reset the built-in "admin" account password ? |
It is possible to reset the admin password with the help of DB queries. Microsoft SQL server: 1. Open SQL Server Management Studio. (If it is not installed, it can be downloaded from Microsoft SQL Server Management Studio Express for 32-bit or 64-bit systems. 2. Login as sa, the database owner or any account which has rights to write on the database and open a new query window. 3. Execute the below mentioned query, Make sure the client management database is selected at the top.
Update Administrators set Authentication=NULL, Password=NULL, SystemPasswordCheck=NULL where LoginName='admin';
5. On login to the console, It will prompt with a dialog box to set the new password for 'admin' account. For Oracle or Postgres database, use the management utilities provided with the database system to run the same query noted above.
|