The search returned 100 results

by florentR2
March 16, 2026 - 1:58 PM
Forum: WAPT Packages
Subject: Listing packages and their status
Answers: 9
Views : 16997

Re: Listing packages and their status

Thanks for sharing!


It's still being tested here, but this is what it looks like.

I'm storing all the attempted packets in a JSON file so I only have to make a single attempt.

So far, it's giving good results.

# -*- coding: utf-8 -*-
from setuphelpers import *
import json
import datetime ...
by florentR2
February 9, 2026 - 4:44 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: [SOLVED] Uppate_package Functionality
Answers: 14
Views : 7665

Re: Uppate_package Functionality


If you really want to do it, create a script on a Windows machine:


`wapt-get update-package-sources c:\waptdev\tis-firefox`
`wapt-get wapt-get -i build-upload c:\waptdev\tis-firefox` `-w C:\pwd-waptdev.txt --wapt-server-passwd=password --wapt-server-user=admin`


Hello,
Is it...
by florentR2
December 8, 2025 - 4:34 PM
Forum: WAPT Packages
Subject: Listing packages and their status
Answers: 9
Views : 16997

Re: Listing packages and their status

This is very interesting because I've just spent quite a bit of time trying to find a solution for the Nextcloud client, which is producing a lot of errors of this type.
I've only fixed this particular package with try-catch blocks, but your idea of ​​a general remediation package is great; I'm subscribing...
by florentR2
December 1, 2025 - 9:29 AM
Forum: WAPT Packages
Subject: [SOLVED] Running Python script via setup.py
Answers: 6
Views : 6870

Re: Running Python script via setup.py

to test:
subprocess.Popen([r"C:\Program Files (x86)\wapt\waptpythonw.exe", makepath(basedir,'script_externe.py')])
by florentR2
February 4, 2025 - 1:17 PM
Forum: WAPT Packages
Subject: [RESOLVED] Package for deploying a LibreOffice extension
Answers: 7
Views : 18421

Re: Package for deploying a LibreOffice extension

The package is more complete and also allows you to check the installation/removal; I've only provided the basic command to add the extension
by florentR2
February 4, 2025 - 9:43 AM
Forum: WAPT Packages
Subject: [RESOLVED] Package for deploying a LibreOffice extension
Answers: 7
Views : 18421

Re: Package for deploying a LibreOffice extension

Good morning,
Yes, you just need the .oxt file and to run this command, adapting it to your environment:

Code: Select all

unopkg.exe add --shared chemin_makepath\Extension.oxt
by florentR2
October 19, 2023 - 11:37
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: Ignoring a dependency or installation status with an ERROR?
Answers: 2
Views : 3483

Re: Ignoring a dependency or installation status in ERROR?

Dell detection should be added

Code: Select all

w = wmi.WMI()
systeminfo = w.Win32_ComputerSystem()[0]
if "DELL" in systeminfo.Manufacturer.upper():
by florentR2
October 13, 2023 - 09:53
Forum: Reporting - SQL Queries
Subject: Installation inventory of a specific package on the network
Answers: 1
Views : 19996

Re: Installation inventory of a specific package on the network

Thank you. A feature request would be to be able to see the deployment status of a package directly from the VS console, for example, the number of PCs in a unit.
by florentR2
July 21, 2023 - 09:57
Forum: WAPT Server
Subject: [SOLVED] Stuck on "iPXE initializing devices..."
Answers: 13
Views : 19298

Re: Stuck on "iPXE initialising devices..."


When generating a new configuration, I didn't get an error message.

However, it still doesn't work.
I do get the following: NBP filename is ipxe_github.efi
NBP filename is 131680 Bytes
Downloading NBP file...
NBP file downloaded successfully


And we're still stuck on the...
by florentR2
April 13, 2023 - 09:08
Forum: WAPT Server
Subject: [RESOLVED] WAPT server accessible from outside in an AD context
Answers: 6
Views : 6508

Re: WAPT server accessible from outside in an AD context

Similarly, we also use a reverse Nginx instance, which allows us, for example, to restrict console access from outside our network.
If I remember correctly, it also allows us to keep the backend's self-signed certificate valid regardless of its validity. It works quite well.