trivial-msi

https://github.com/roswell/trivial-msi.git

git clone 'https://github.com/roswell/trivial-msi.git'

(ql:quickload :trivial-msi)
1

trivial-msi

Build Status

Utilities for working with Windows Installer files.

Usage

The trivial-msi package exports two functions: install and uninstall. Both take an absolute pathname to the MSI file as their first argument.

install has two optional keyword arguments: directory to specify an installation directory, and mode. The mode option is one of :full, :passive or :quiet. The :full mode shows the full installation GUI, while :passive proceeds with the installation, showing only a progress bar, and :quiet suppresses all output.

Example

CL-USER> (install #p"/path/to/installer.msi"
                 :directory #p"/custom/installation/directory/"
                 :mode :quiet)

CL-USER> (uninstall #p"/path/to/installer.msi")

License

Copyright (c) 2015 Fernando Borretti

Licensed under the MIT License.