---
title: "Reset Lease Control Administrators password"
canonical: "https://servicedesk.maxgeo.com/space/LC/1263337628/Reset%20Lease%20Control%20Administrators%20password"
format: markdown
---
This script will need to run on the Lease Control database in SQL server management studio.

 After this script is run the Administrators password will be set to password.

```sql
Update dbo.LMS_SYSOPT_SystemOption
 SET SYSOPT_Value = 'gIRGvc]E'
 where SYSOPT_Code = 'LMS' and SYSOPT_Name = 'AdminPassword'
```