The search returned 4 results

by VincentUCA
January 27, 2026 - 4:23 PM
Forum: Package List
Subject: tis-audit-bitlocker
Answers: 1
Views : 28037

Re: tis-audit-bitlocker

I found the cause of the problem by reading this page:
https://community.spiceworks.com/t/how-to-remove-items-from-a-list-while-iterating/932099/5

The problem stems from using the `remove` method within the `for` loop itself. This creates unexpected behavior. The consequence is that...
by VincentUCA
January 27, 2026 - 10:31
Forum: Package List
Subject: tis-audit-bitlocker
Answers: 1
Views : 28037

tis-audit-bitlocker

Hello,
I'm encountering errors with the audit function in this package.

On some of our machines, the PowerShell function "(Get-BitLockerVolume).MountPoint" returns strange drive letters like: \\?\Volume{2d8e1378-6a0d-4197-49d0-fe4e2f18cd72}.

Later in the package's code, a loop...
by VincentUCA
March 21, 2025 - 11:34
Forum: WAPT Packages
Subject: [SOLVED] Installing the previous version of a package
Answers: 5
Views : 7835

Re: Installing the previous version of a package

Hello,
thank you for your valuable advice. I successfully tested the installation of an older version of my package. However, the part added by WAPT must not be omitted from the version number, otherwise it won't work. To use the previous example, it would look like this:

wapt ...
by VincentUCA
March 19, 2025 - 11:56
Forum: WAPT Packages
Subject: [SOLVED] Installing the previous version of a package
Answers: 5
Views : 7835

[SOLVED] Installing the previous version of a package

WAPT version 2.6

Hello,
Sorry if a similar topic has already been opened, I couldn't find it.
I'm currently developing a software package whose installer doesn't remove the old version. So I added a piece of code to do that. But to test it, I'd like to be able to...