Hello,
Thank you for clarifying. The thing is that in your version of Adxes the steps are different. The instructions in the article are only valid for Adaxes 2023. To customize the parameters for password generation:
- Navigate to the folder where Adaxes service is installed. By default, the folder is C:\Program Files\Softerra\Adaxes 3\Service.
- Open the Softerra.Adaxes.Service.exe.config file with a text editor.
- Locate the configuration\softerra.adaxes\passwordSettings\passwordGeneration XML element.
- Specify the default minimum and maximum password length in the minLengthDefault and maxLengthDefault parameters accordingly.
<configuration>
...
<softerra.adaxes>
...
<passwordSettings>
<passwordGeneration minLengthDefault="10" maxLengthDefault="12" .../>
- Specify the characters to use for password generation in parameters lowerChars, upperChars, numericChars, specialChars and otherChars.
<configuration>
...
<softerra.adaxes>
...
<passwordSettings>
<passwordGeneration ... lowerChars="adtmur" upperChars="ABCD" numericChars="123" specialChars="!%#" otherChars="тÜé"/>
- Save the file.
- Restart the Adaxes service.