The search returned 4 results

by Intern FGA
June 26, 2015 - 11:23
Forum: Your opinion
Subject: Optimizing the console
Answers: 1
Views : 5379

Optimize the console

WAPT works very well and allows you to do a lot; I'm very satisfied with it.

I have a suggestion regarding the administration console: it's very well designed and, above all, very intuitive at first glance. However, as soon as you request something that uses a fair amount of...
by Intern FGA
June 24, 2015 - 3:33 PM
Forum: WAPT Packages
Subject: IBM Notes Package
Answers: 3
Views : 4448

Re: IBM Notes Package

I figured it out on my own and eventually understood how packages work, especially uninstallation using the registry.
Here's my script; perhaps it will be useful to others.
# -*- coding: utf-8 -*-

from setuphelpers import *
import platform

uninstallkey = []

def ...
by Intern FGA
June 19, 2015 - 10:34
Forum: WAPT Packages
Subject: IBM Notes Package
Answers: 3
Views : 4448

Re: IBM Notes Package

Thank you, I was inspired by the LibreOffice package to a lesser extent. Here is the code I created:

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

uninstallkey = []
uninstallstring = []

def install():
if os.path.exists("C:\Program Files (x86)\IBM\Notes" or "C:\Program Files ...
by Intern FGA
June 18, 2015 - 1:56 PM
Forum: WAPT Packages
Subject: IBM Notes Package
Answers: 3
Views : 4448

IBM Notes Package

Hello,

I need to create a package for an application not available in the official TIS repositories.
IBM Notes 9.0.1

. I have two executables; the first cleanly uninstalls any versions of Lotus Notes that might be installed on the client machine. The second installs IBM Notes 9.0.1.

I've managed to...