Page 1 of 1

[Resolved] Creating Postman package

Published: September 20, 2021 - 2:17 PM
by MorganeDeveho
I want to create a Postman package

Here is my code:

Code: Select all

def install():
    # declaring local variables
    package_version = control.get_software_version()

    # installing the package
    install_exe_if_needed('Postman-win64-8.12.1-Setup.exe',
        silentflags='-s',
        key='',
        min_version=package_version
    )
def uninstall():
        run(r'"%LocalAppData%\Postman\Update" --uninstall -s')
Installation and uninstallation work in PyScripter, but when I test on my test machine, the installation does not work.

Re: [Resolved] Creating a Postman package

Published: September 20, 2021 - 2:17 PM
by MorganeDeveho
The software does not require administrator privileges to install.
There's no need to do it via Wapt.