The search returned 29 results

by nliaudat
April 13, 2022 - 10:24
Forum: WAPT Packages
Subject: [RESOLVED] Logitech Options
Answers: 1
Views : 2529

[RESOLVED] Logitech Options

Here's a package to install and, more importantly, uninstall Logitech Options:

# -*- coding: utf-8 -*-
from setuphelpers import *

uninstallkey = []

#https://prosupport.logi.com/hc/en-us/articles/1500002995241-Mass-installation-and-configuration-of-Logitech-Options
#impacted_process: DJCUHost.exe ...
by nliaudat
May 18, 2021 - 10:49
Forum: WAPT Server
Subject: [SOLVED] wapt 1.8 and 2.0 in parallel
Answers: 2
Views : 3634

Re: wapt 1.8 and 2.0 in parallel

THANKS
by nliaudat
May 13, 2021 - 09:57
Forum: WAPT Server
Subject: [SOLVED] wapt 1.8 and 2.0 in parallel
Answers: 2
Views : 3634

[SOLVED] wapt 1.8 and 2.0 in parallel

Hello,

To ensure a smooth migration between WAPT 1.8 and 2.0, I would like to install a new server running version 2.0 alongside the existing 1.8 server.

Technically, can client workstations have two different versions of the WAPT agent?

Given the package migration issues, this is concerning me...
by nliaudat
March 16, 2021 - 10:06
Forum: WAPT Packages
Subject: KB5000802 BSOD bug - fix printers
Answers: 1
Views : 3100

Re: KB5000802 BSOD bug - fix printers

Update after MS fix:


def install():
print('Install kb5001567')
#2359302 = WU_S_ALREADY_INSTALLED
run('wusa.exe windows10.0-kb5001567-x64_e3c7e1cb6fa3857b5b0c8cf487e7e16213b1ea83.msu /quiet /norestart',accept_returncodes=[0,2359302])


def audit():
print(run_notfatal(r'wmic qfe list ...
by nliaudat
March 15, 2021 - 10:59
Forum: WAPT Packages
Subject: KB5000802 BSOD bug - fix printers
Answers: 1
Views : 3100

KB5000802 BSOD bug - fix printers

wapt package to fix printers bug introduced in KB5000802:
#https://www.windowslatest.com/2021/03/13/microsoft-working-on-a-fix-for-windows-10-bsod-march-update/



##https://www.windowslatest.com/2021/03/13/microsoft-working-on-a-fix-for-windows-10-bsod-march-update/

import ctypes
from ctypes ...
by nliaudat
February 12, 2021 - 09:10
Forum: WAPT Packages
Subject: Creating a Package for AutoCAD
Answers: 3
Views : 4160

Re: Creating a Package for AutoCAD

An Autodesk deployment package needs to be created.

then launch

Code: Select all

...acadLT2021_deploy\Img\Setup.exe /qb /I ...\acadLT2021_deploy\Img\acadLT2021.ini /language fr-fr'
by nliaudat
January 20, 2021 - 7:33 AM
Forum: Your opinion
Subject: WAPT Model Change Notice
Answers: 22
Views : 111164

Re: WAPT model change notice

WAPT Discovery will not support Windows XP and macOS.
WAPT Discovery will be a proprietary version.
This version will also be limited to 300 workstations.
Is that all? Or will there be other limitations?
by nliaudat
January 19, 2021 - 10:11
Forum: Your opinion
Subject: WAPT Model Change Notice
Answers: 22
Views : 111164

Re: WAPT model change notice

What changes will Wapt Discovery bring compared to Community?
by nliaudat
January 14, 2021 - 1:57 PM
Forum: Your opinion
Subject: WAPT Model Change Notice
Answers: 22
Views : 111164

Re: WAPT model change notice

Good morning,
WAPT Discovery will not support Windows XP and macOS.
WAPT Discovery will be a proprietary version.
This version will also be limited to 300 workstations.

Will there be additional restrictions for Wapt Discovery compared to Community?

Sincerely
by nliaudat
January 7, 2021 - 5:01 PM
Forum: WAPT Packages
Subject: DOS Command
Answers: 1
Views : 2778

Re: DOS Command

No need for a .bat file...

in WAPT, use the command `run('netsh advfirewall ....')` or with `run_not_fatal()`

(see the example

). PS: Add `"profile=domain"` to your `netsh` command to only allow connections from your domain.