Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dbroeglin/PoshWix
PoshWix is an opinionated and trivially simple tool to produce MSI packages from PowerShell modules
https://github.com/dbroeglin/PoshWix
Last synced: 3 months ago
JSON representation
PoshWix is an opinionated and trivially simple tool to produce MSI packages from PowerShell modules
- Host: GitHub
- URL: https://github.com/dbroeglin/PoshWix
- Owner: dbroeglin
- License: mit
- Created: 2015-12-12T22:21:51.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-15T23:37:31.000Z (almost 9 years ago)
- Last Synced: 2024-05-28T02:20:33.013Z (6 months ago)
- Language: PowerShell
- Size: 6.84 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - dbroeglin/PoshWix - PoshWix is an opinionated and trivially simple tool to produce MSI packages from PowerShell modules (PowerShell)
README
# PoshWix
PoshWix is an opinionated and trivially simple tool to produce MSI packages from PowerShell modules# Getting started
Ensure the WIX toolset is installed (see http://wixtoolset.org/)
Install the PoshWix module and, in a PowerShell module source directory create
a WIX specification with the same name as your module (for instance `FooBar.wxs`). You can use
the current module's `PoshWix.wxs` file as a sample (juste ensure you change the
UpgradeCode to something else). Then execute:Write-WixModulePackage
You should get a nice MSI that will install your module in `C:\Windows\system32\WindowsPowerShell\v1.0\Modules`
# Documentation
help Write-WixModulePackage
# TODO
1. Validate version number format to allow for smooth upgrades.
# DisclaimerThis is a work in progress. It is provided without warranty,
even the implied warranty of merchantability, satisfaction or
fitness for a particular use.