La recherche a retourné 79 résultats

par empbilly
25 janv. 2018 - 16:36
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : groupe de machine
Réponses : 11
Vues : 5230

Re: groupe de machine

sfonteneau a écrit : 23 janv. 2018 - 17:35 Effectivement dans la version 1.5 entreprise :-)

DUPFl5wW4AE7G6W.jpg
Only in enterprise version?
par empbilly
23 janv. 2018 - 13:35
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] Uninstall legacy software from machine
Réponses : 8
Vues : 3865

Re: Uninstall legacy software from machine

This "key" is the value found in the columm "Uninstall key" from Software Inventory in wapt console, right? yes ! you can also find the uninstallkey with this command: https://www.wapt.fr/en/doc/Utilisation/utilisation_cli/utilisation_cli_creationpaquets.html#wapt-get-list-regis...
par empbilly
23 janv. 2018 - 12:25
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] Uninstall legacy software from machine
Réponses : 8
Vues : 3865

Re: Uninstall legacy software from machine

Your code works. I propose to simplify it: def install(): if uninstall_key_exists('1233A4A7-BA0B-4067-BE21-FB97AFABC0CF'): run(WAPT.uninstall_cmd('1233A4A7-BA0B-4067-BE21-FB97AFABC0CF')) sfonteneau, This "key" is the value found in the columm "Uninstall key" from Software Invent...
par empbilly
22 janv. 2018 - 21:48
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] Uninstall legacy software from machine
Réponses : 8
Vues : 3865

Re: Uninstall legacy software from machine

As you said, you need to create a wapt package that will uninstall the software. Ok. Like this? setup.py # -*- coding: utf-8 -*- from setuphelpers import * uninstallkey=[] def install(): softname = 'firefox' check_installed_soft = installed_softwares(softname) if check_installed_soft: for uninstall...
par empbilly
22 janv. 2018 - 21:04
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] Uninstall legacy software from machine
Réponses : 8
Vues : 3865

Re: Uninstall legacy software from machine

yes here is a sample code : https://www.wapt.fr/en/doc/CreationPaquets/package_additional/setuphelpers_useful.html#suppression-de-logiciels for soft in installed_softwares('winscp3'): run(WAPT.uninstall_cmd(soft['key'])) Sorry for the question, but I run this code in some place or save this as a wa...
par empbilly
22 janv. 2018 - 18:29
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] Uninstall legacy software from machine
Réponses : 8
Vues : 3865

[RESOLVED] Uninstall legacy software from machine

Hello wapters,

I wonder if with wapt I can uninstall a software that was already on the computer before installing the client?
par empbilly
16 janv. 2018 - 12:45
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] Hide system tray icon
Réponses : 5
Vues : 2162

Re: Hide system tray icon

In WaptConsole, you go in the "Software Repository" tab, then click on "import from internet", then search for "tis-notray" package and click "import". Then in the Inventory tab, you select the computer that need wapttray to be removed, and you add that packa...
par empbilly
16 janv. 2018 - 11:17
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] Hide system tray icon
Réponses : 5
Vues : 2162

Re: Hide system tray icon

Hi empbilly, Hello, How can I hide the "system tray icon" from "wapt client"? I'm doing deploy via script and removed the "autorunTray" option, but it did not work. Just to add some explanation to Simon's answer: the autorunTray parameter in waptdeploy add a link in us...
par empbilly
15 janv. 2018 - 21:06
Forum : WAPT usage (Console, Agent) / Utilisation WAPT (Console, Agent)
Sujet : [RESOLVED] Hide system tray icon
Réponses : 5
Vues : 2162

[RESOLVED] Hide system tray icon

Hello,

How can I hide the "system tray icon" from "wapt client"?

I'm doing deploy via script and removed the "autorunTray" option, but it did not work.