0 votes

Hi,

I'm trying to fully automate the deployment of Adaxes (using windows DSC ressources). I was able to setup servers with only the front-end features, but cannot do for the backend.

my current setup:

        Package Adaxes
        {
            Name = "Softerra Adaxes 2017.1"
            Path = "\\#CENSORED#\Adaxes\adaxes_x64_en.msi"
            ProductId = "755CBAA0-36F1-43D1-96CF-1DEE2F7A9384"
            Arguments = "ADDLOCAL=AdminConsoleFeature,ServiceFeature"
            Credential = $ServiceCreds
            LogPath = "C:\windows\temp\msilog.log"
            Ensure = 'Present'
        }

The install is failing when setting up the AD LDS service, because I don't enter the credential for it:

MSI (s) (1C!CC) [10:59:03:166]: Product: Softerra Adaxes 2017.1 -- Failed to install the service AD LDS instance.
The value entered for Administrator is not a valid user account. In the unattended setup file, type a valid user account in the Administrator field, and then run Setup again.

Failed to install the service AD LDS instance.
The value entered for Administrator is not a valid user account. In the unattended setup file, type a valid user account in the Administrator field, and then run Setup again.
InstallAdamInstance: Error 0x80074e34: Failed to install an ADAM instance.

i tried to add the user/password by settings properties from this list: ADMADMINPWD;AdmGetServiceConfigIdUIPassword;AdmGetServiceConfigIdUIUser;ADMREPLACCPWD;AdmSelectServiceDlgPassword;AdmSelectServiceDlgUser;GetConfigIdForWebUIPassword;InstallAdamInstance as command line parameter, but they are not taken into account.

any idea how to do it? can i give it a config file? another parameter name? I couldn't find any relevant information in the forum or online about giving the credentials to the installer...

by (100 points)

1 Answer

0 votes
by (216k points)
selected by
Best answer

Hello Thomas,

The following command line installs Adaxes Service and Administration Console:

msiexec /quiet /i "\\SERVER\Share\adaxes_x64_en.msi" ^
ADDLOCAL=ServiceFeature,AdminConsoleFeature ADMCFGTYPE=0 ^
ADMADMINNAME="EXAMPLE\Administrator" ADMADMINPWD="p@$$w0rd" ^
ADMSERVICEADMINSID="S-1-5-21-1234567890-1234567890-1234567890-1111" ^
OPENADAXESPORTINFIREWALL=1

where:

  • \\SERVER\Share\adaxes_x64_en.msi - the full path to the installation package;
  • EXAMPLE\Administrator - username of Adaxes service default service administrator in the DOMAIN\Username or username@domain.com format;
  • p@$$w0rd - password of Adaxes service default service administrator;
  • S-1-5-21-1234567890-1234567890-1234567890-1111 - SID of Adaxes service default service administrator in the SDDL form.

Related questions

0 votes
0 answers

Hello, Where i'm actually working, it seems there is an "old dev" Adaxes environnement which was linked to the AD. The server has been deleted now, but it seems the Windows ... Even if i install a fresh client. Where those parameters came from a GPO i guess ?

asked Apr 26, 2016 by Alexandre (460 points)
0 votes
1 answer

Hello, I'm looking for a full breakdown of the msi installer options so that I can script the installs of both the Adaxes Service and web UI. It appears that the install options ... .but a full list of options and what they do would be very helpful. Thank you!

asked Feb 11, 2019 by JThompson (50 points)
0 votes
1 answer

Is version 2018.2 still supported? Where can I find EOL / End of Support information?

asked Dec 14, 2023 by chappyshi (90 points)
0 votes
1 answer

Hello, With your tool, is there a way to Bulk modify Users by adding the SAMAccountName to the CN/Displayname i.E %LastName%, %FirstName%, %(SAMAccountName)% In ... (Fred Stokes), for both CN and DisplayName Stokes, Fred (SAMAccountName) Regards, Enrico

asked Nov 20, 2018 by EnricoM (50 points)
0 votes
1 answer

Is the further clarification on how to join the Adaxes service to the configuration set during a multi-sever upgrade

asked Nov 16, 2022 by itsupport (20 points)
3,346 questions
3,047 answers
7,772 comments
544,970 users