Skip to content

Commit

Permalink
Update readme (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasNieto authored Dec 16, 2024
1 parent 8c00e70 commit 2b007aa
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning][semver].

## [Unreleased]

## [0.1.0] - xxxx-xx-xx
## [0.1.0] - 2024-12-15

### Added

Expand Down
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,37 @@ Import-Module AnyPackage.Msi
```powershell
Find-Package -Path C:\Temp\installer.msi
```

### Install packages

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

### Install packages with custom properties

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

### Get installed packages

```powershell
Get-Package
```

### Get installed packages and specify type

```powershell
# MSI Files
Get-Package -Provider Msi -InstallerType Product
# MSP Files
Get-Package -Provider Msi -InstallerType Patch
```

### Uninstall packages

```powershell
Uninstall-Package -Name neovim
```

0 comments on commit 2b007aa

Please sign in to comment.