Skip to content

anypackage/msi

Repository files navigation

AnyPackage.Msi

gallery-image build-image cf-image

Msi provider for AnyPackage.

Install AnyPackage.Msi

Install-PSResource AnyPackage.Msi

Import AnyPackage.Msi

Import-Module AnyPackage.Msi

Sample usages

Find available packages

Find-Package -Path C:\Temp\installer.msi

Install packages

Install-Package -Path C:\Temp\installer.msi

Install packages with custom properties

Install-Package -Path C:\Temp\installer.msi -Provider Msi -Properties "CustomProp=1"

Get installed packages

Get-Package

Get installed packages and specify type

# MSI Files
Get-Package -Provider Msi -InstallType Product

# MSP Files
Get-Package -Provider Msi -InstallType Patch

Uninstall packages

Uninstall-Package -Name neovim