Table of Contents |
---|
Setting up password complexity
You can set up minimum complexity requirements for MobileTech passwords, such as requiring digits, upper case letters, special characters, and password length in the C:\Program Files (x86)\Signature\MobileTech\RescoCloud\Web.config and C:\Program Files (x86)\Signature\MobileTech\Admin\MobileTechAdmin.exe.config files using a regex (regular expression) check.
...
(?=.[0-9]){*} | Indicates at least one digit. |
(?=.[A-Z])* | Indicates at least one upper case letter. |
(?=.[!@#$&]) | Indicates at least one special character. |
{8,} |
|
Setting up the password lockout policy
Set up your password lockout policy to indicate a lockout mode (Lockout or Disable), after x failed login attempts, as well as how many minutes a user's account is locked. These setup options are in the Web.config file. The Password Policy Lockout Attempts setting will also need to be set in the MobileTechAdmin.exe.config file.
...