Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

You can set up minimum complexity requirements for MobileTech passwords, such as requiring digits, upper case letters, special characters, and password length in the Signature MobileTech Web Sync Server web.config and C:\Program Files (x86)\Signature\MobileTech\Admin\MobileTechAdmin.exe.config files using a regex (regular expression) check. 

...

add key="PasswordPolicyStrengthRegex" value="^(?=.[0-9])(?=.[A-Z])(?=.[!@#$&]).{8,}$"

(?=.[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 set up setup options are in the Signature MobileTech Web Sync Server web.config file. The Password Policy Lockout Attempts setting will also need to be set in the MobileTechAdmin.exe.config file.

...