Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Easy Find and Replace: {"id":"d3ee58c7-0780-4c6b-bb85-d8accc7047e2","find":"/hamburger menu/i","replace":"menu","search-type":"case-insensitive","replace-title":false}

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,}
  • Indicates a minimum of 8 characters in length


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.

...