Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/krokofant/ps-install-if-missing

Install a powershell module if it's not already installed
https://github.com/krokofant/ps-install-if-missing

powershell powershell-module scoop

Last synced: about 10 hours ago
JSON representation

Install a powershell module if it's not already installed

Awesome Lists containing this project

README

        

# 👾 PS Install If Missing

Make sure that your dependent PSModules are installed.

## Usage

```powershell
Install-IfMissing posh-git
```

## Installation

### 1. Install scoop

```powershell
set-executionpolicy remotesigned -s currentuser
iex (new-object net.webclient).downloadstring('https://get.scoop.sh')
```

### 2. Install the [powershell bucket](https://github.com/krokofant/scoop-powershell-bucket)

```powershell
scoop bucket add powershell-tools https://github.com/krokofant/scoop-powershell-bucket.git
```

### 3. Install PS-Install-If-Missing

```powershell
scoop install PS-Install-If-Missing
```