├── .gitignore ├── ExampleUsage.ps1 ├── LICENSE ├── LaunchScript.ps1 ├── MSI ├── LICENSE.txt ├── Licenses │ └── WIX.txt ├── MSI.formats.ps1xml ├── MSI.psd1 ├── MSI.psm1 ├── MSI.types.ps1xml ├── Microsoft.Deployment.Compression.Cab.dll ├── Microsoft.Deployment.Compression.dll ├── Microsoft.Deployment.WindowsInstaller.Package.dll ├── Microsoft.Deployment.WindowsInstaller.dll ├── Microsoft.Tools.WindowsInstaller.PowerShell.dll ├── Microsoft.Tools.WindowsInstaller.PowerShell.dll-Help.xml └── about_MSI.help.txt ├── MsiZap.exe ├── PSSoftware.Tests.ps1 ├── PSSoftware.psd1 ├── PSSoftware.psm1 ├── README.md └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /ExampleUsage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/ExampleUsage.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/LICENSE -------------------------------------------------------------------------------- /LaunchScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/LaunchScript.ps1 -------------------------------------------------------------------------------- /MSI/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/LICENSE.txt -------------------------------------------------------------------------------- /MSI/Licenses/WIX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/Licenses/WIX.txt -------------------------------------------------------------------------------- /MSI/MSI.formats.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/MSI.formats.ps1xml -------------------------------------------------------------------------------- /MSI/MSI.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/MSI.psd1 -------------------------------------------------------------------------------- /MSI/MSI.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/MSI.psm1 -------------------------------------------------------------------------------- /MSI/MSI.types.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/MSI.types.ps1xml -------------------------------------------------------------------------------- /MSI/Microsoft.Deployment.Compression.Cab.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/Microsoft.Deployment.Compression.Cab.dll -------------------------------------------------------------------------------- /MSI/Microsoft.Deployment.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/Microsoft.Deployment.Compression.dll -------------------------------------------------------------------------------- /MSI/Microsoft.Deployment.WindowsInstaller.Package.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/Microsoft.Deployment.WindowsInstaller.Package.dll -------------------------------------------------------------------------------- /MSI/Microsoft.Deployment.WindowsInstaller.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/Microsoft.Deployment.WindowsInstaller.dll -------------------------------------------------------------------------------- /MSI/Microsoft.Tools.WindowsInstaller.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/Microsoft.Tools.WindowsInstaller.PowerShell.dll -------------------------------------------------------------------------------- /MSI/Microsoft.Tools.WindowsInstaller.PowerShell.dll-Help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/Microsoft.Tools.WindowsInstaller.PowerShell.dll-Help.xml -------------------------------------------------------------------------------- /MSI/about_MSI.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MSI/about_MSI.help.txt -------------------------------------------------------------------------------- /MsiZap.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/MsiZap.exe -------------------------------------------------------------------------------- /PSSoftware.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/PSSoftware.Tests.ps1 -------------------------------------------------------------------------------- /PSSoftware.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/PSSoftware.psd1 -------------------------------------------------------------------------------- /PSSoftware.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/PSSoftware.psm1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PSSoftware/HEAD/appveyor.yml --------------------------------------------------------------------------------