Page 1 of 1

[RESOLVED] Deployment on workgroup workstations

Published: February 1, 2024 - 6:30 PM
by florence_ufrsanté76
Hello,
We would like to use our university's WAPT enterprise server to deploy operating systems and applications on workstations that will not be joined to the Active Directory domain.
Deploying Windows and WAPT packages installed via post-install script works.
I created a package that adds the variable `host_organizational_unit_dn=ourOutsideOU` to the global section of the `wapt-get.ini` file. This package does the job correctly, and a check of the `wapt-get.ini` file confirms this.
The problem is that the machine does not appear in the "inventory" tab of the console in the "ourOutsideOU" folder, except, ironically, if the machine is joined to the domain (which is not the objective).
We do not have control over the server configuration, and Kerberos authentication has been enabled on the server side... it seems that this is where the problem lies. What solutions can we consider?
Thank you in advance for your help!

Re: Deployment to workgroup workstations

Published: February 2, 2024 - 11:12 AM
by sfonteneau
You should try it, but it should normally work:

Add this to the post-installation scripts of the machines:

Code: Select all

C:\Program Files (x86)\wapt\wapt-get.exe register --not-interactive --wapt-server-user=register --wapt-server-passwd=password
Therefore, a user named "register" must be created in the console and given only the right to register machines.

Re: Deployment to workgroup workstations

Published: February 2, 2024 - 4:44 PM
by florence_ufrsanté76
Thank you so much for your reply, I will test it as soon as possible