The search returned 69 results

by jlepiquet
September 30, 2025 - 3:55 PM
Forum: WAPT Packages
Subject: [SOLVED] Problem with the virtualbox package
Answers: 2
Views : 15104

Re: Problem with the virtualbox package

Hi Mikael,

Oracle has changed the names of its files.
I'm modifying the package and running the build.

Thanks for your feedback.
Best regards,
by jlepiquet
September 29, 2025 - 09:35
Forum: WAPT Packages
Subject: [SOLVED] Problem with Microsoft Store app template and Quick Share
Answers: 3
Views : 20190

Re: Microsoft store app and quick share template problem

Hi Vincent,

There seems to be a timeout with the download links.
I tested it on our end and it works, so there might be a URL block on your end, or an unfortunate timing issue during the download.

Please try again and get back to us.

Best regards,

Joffrey
by jlepiquet
September 23, 2025 - 4:56 PM
Forum: WAPT Packages
Subject: [RESOLVED] Uninstalling the microsoft-office-2024-professional package
Answers: 10
Views : 40112

Re: Uninstalling the microsoft-office-2024-professional package

Indeed, there was a syntax issue between the search and the output.
Thank you for your feedback.

I'm marking the topic as resolved
by jlepiquet
September 23, 2025 - 11:24
Forum: Reporting - SQL Queries
Subject: [RESOLVED] Query Update
Answers: 2
Views : 21566

Re: Query update

Hello,

if you don't have a standardized name on your network, you can use the "original_name" field: `

select
n.original_name,string_agg(distinct lower(h.computer_name), ','),count(distinct h.uuid)
from hostsoftwares s
left join normalization n on (n.original_name = s.name) and (n ...`)`
by jlepiquet
September 22, 2025 - 5:05 PM
Forum: WAPT Packages
Subject: [RESOLVED] Uninstalling the microsoft-office-2024-professional package
Answers: 10
Views : 40112

Re: Uninstalling the microsoft-office-2024-professional package

However, I believe that uninstalling Office deletes the OfficeClickToRun.exe file; it should be the last one to be uninstalled.
by jlepiquet
September 22, 2025 - 4:28 PM
Forum: WAPT Packages
Subject: [RESOLVED] Uninstalling the microsoft-office-2024-professional package
Answers: 10
Views : 40112

Re: Uninstalling the microsoft-office-2024-professional package

You need to add DisplayLevel=False to the end of the uninstallation command

"C:\Program Files\Common Files\Microsoft Shared\ClickToRun\OfficeClickToRun.exe" scenario=install scenariosubtype=ARP sourcetype=None productstoremove=Standard2024Volume.16_fr-fr_x-none culture=fr-fr version.16=16.0 ...
by jlepiquet
September 22, 2025 - 12:04
Forum: Package List
Subject: [SOLVED] tis-citrix-workspace-ltsr
Answers: 2
Views : 21418

Re: tis-citrix-workspace-ltsr

Hello,

The package has been built; you can find it here: https://wapt.tranquil.it/wapt-testing/t ... EPROD.wapt

It will be available in production within 5 days.

Regards,
by jlepiquet
September 22, 2025 - 10:57
Forum: Package List
Subject: [SOLVED] tis-citrix-workspace-ltsr
Answers: 2
Views : 21418

Re: tis-citrix-workspace-ltsr

Hello,

the URL we usually use is no longer working.
I'm looking into it and will keep you updated.

Regards
by jlepiquet
September 22, 2025 - 08:53
Forum: WAPT Packages
Subject: [RESOLVED] Uninstalling the microsoft-office-2024-professional package
Answers: 10
Views : 40112

Re: Uninstalling the microsoft-office-2024-professional package

Is it possible to launch

"C:\Program Files\Common Files\Microsoft Shared\ClickToRun\OfficeClickToRun.exe" scenario=install scenariosubtype=ARP sourcetype=None productstoremove=Standard2024Volume.16_en-us_x-none culture=en-us version.16=16.0

from a command prompt as administrator and see how the PC reacts?
by jlepiquet
September 18, 2025 - 11:04
Forum: WAPT Packages
Subject: [RESOLVED] Uninstalling the microsoft-office-2024-professional package
Answers: 10
Views : 40112

Re: Uninstalling the microsoft-office-2024-professional package

Hello,

you would need to add an uninstallation function with all the keys for the software you want to uninstall.
Based on the uninstallation key:
def uninstall():

uninstall_keys = ["Standard2024Volume - fr-fr", "Microsoft Office LTSC Standard 2024 - en-us"]

for ...