Page 1 of 1

RapidTyping Packet

Published: January 23, 2019 - 8:47 AM
by Skudd
Good morning,
When creating a package for the RapidTyping 5 software, I'm having trouble with the uninstall...
Let me explain;
During the installation via PyScripter everything goes well EXCEPT that in the end I am missing the uninstall in the installation folder.
This is obviously not the case if I install it manually :geek:
If anyone can shed some light on my shortcomings, thank you.

Code: Select all

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

uninstallkey = []

def install():
    print('installing popsie-rapidtyping_setup_5.3')
    install_exe_if_needed("RapidTyping_Setup_5.3.exe",
                            silentflags="/S",
                            key='RapidTyping5',
                            min_version="5.3",
                            killbefore="RapidTyping.exe")

def uninstall():
    print('uninstalling popsie-rapidtyping_setup_5.3')
    run(r'"C:\Program Files\RapidTyping5\uninstall.exe" /S')
For your information, I only have a few relatively simple packages to my credit at the moment.