The search returned 2363 results

by sfonteneau
September 7, 2026 - 9:23 AM
Forum: WAPT Packages
Subject: files corrupted, SHA not matching
Answers: 18
Views : 62426

Re: files corrupted, SHA not matching

Emmanuel64 wrote: Sep 4, 2026 - 9:02 PM I use EDR Withsecure
It's always the same... :roll:

Of all the antivirus and EDR programs I've come across, it always seems to be the one causing problems... (even in wapt packages...)
by sfonteneau
September 4, 2026 - 2:07 PM
Forum: WAPT Packages
Subject: files corrupted, SHA not matching
Answers: 18
Views : 62426

Re: files corrupted, SHA not matching

Thanks for the feedback!

Could you please specify which EDR was used?
by sfonteneau
September 4, 2026 - 11:57
Forum: WAPT Packages
Subject: files corrupted, SHA not matching
Answers: 18
Views : 62426

Re: files corrupted, SHA not matching

Emmanuel64 wrote: Sep 4, 2026 - 11:24 To speed things up, I manually scan the .msi file; the hash is correct.
I didn't understand that sentence
by sfonteneau
September 3, 2026 - 4:55 PM
Forum: WAPT Packages
Subject: files corrupted, SHA not matching
Answers: 18
Views : 62426

Re: files corrupted, SHA not matching

After copying, is the MSI still signed by Microsoft?

Far-fetched theory:

Is the version still the expected one, or is it a higher version?

I'm starting to wonder if Microsoft might be replacing the binaries on the fly... that would be crazy, but anyway... it's a theory worth checking...
by sfonteneau
September 2, 2026 - 3:02 PM
Forum: WAPT usage (Console, Agent) / WAPT usage (Console, Agent)
Subject: Secondary repositories over HTTPS
Answers: 5
Views : 17136

Re: Secondary repositories over HTTPS

If you want an HTTPS repository, you need a Public Key Infrastructure (PKI

. You must create a certificate issued by a Certificate Authority (CA) (which you already have, such as OpenSSL, ADCS, or another) for your repositories and your WAPT server.

Then, in `verify_cert` (wapt-get.ini), you must specify your CA.

And then you can have validation...
by sfonteneau
September 1, 2026 - 1:52 PM
Forum: WAPT Packages
Subject: Missing dependencies
Answers: 1
Views : 1499

Re: Missing dependencies


waptpackage.EWaptUnavailablePackage: Missing dependencies: dmc-windows11-requirements


I see that the package has been tagged with

min_os_version: 10.0.18362.

Could that be it?


As a side question, when an application package is updated, do we download the new package from the repository...?
by sfonteneau
August 26, 2026 - 07:58
Forum: WAPT Packages
Subject: [RESOLVED] Pronote and EDT client packages
Answers: 9
Views : 8805

Re: Pronote and client timetable packages

Hello,

surprisingly the package works in Luti on our system

https://luti.tranquil.it/get_folder_res ... luZG93cw==

(following the modification, obviously)

Simon
by sfonteneau
August 24, 2026 - 5:14 PM
Forum: WAPT Packages
Subject: Cleaning up an old version package
Answers: 12
Views : 23490

Re: Cleaning up old version package

This:

https://github.com/comitari/wapt-packages/blob/main/preprod/comi-apps-to-update-on-wapt-server/setup.py#L71

returns all packages

. And the `local_package_list` dictionary returns all the latest package versions for each host capability.

Basically, everything that doesn't appear in `local`...
by sfonteneau
August 24, 2026 - 10:06
Forum: WAPT Packages
Subject: Cleaning up an old version package
Answers: 12
Views : 23490

Re: Cleaning up old version package

You have to go through /packages as it is done in the code I gave previously, it is much cleaner because it is the real data.
by sfonteneau
August 21, 2026 - 5:06 PM
Forum: WAPT Packages
Subject: Cleaning up an old version package
Answers: 12
Views : 23490

Re: Cleaning up old version package

No, none. The command was too dangerous and was not implemented.

Use this script as a guide to identify the latest version of each available package:

https://github.com/comitari/wapt-packages/blob/main/preprod/comi-apps-to-update-on-wapt-server/setup.py

The removal is...