Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 765 Bytes

INSTALL.md

File metadata and controls

27 lines (18 loc) · 765 Bytes

Installing $$$MODULE_NAME$$$

You can install this module one of three ways.

Via PowerShell Gallery

Most people will want to install this from the PowerShell Gallery. It's quick and easy.

Install-Module $$$MODULE_NAME$$$

Via a file copy

Copy all of these files to your $env:PSModulePath. For example, to do this on Windows, you might use something like this:

Copy-Item -Recurse ~\Downloads\$$$MODULE_NAME$$$ ~\Documents\PowerShell\Modules

Directly from GitHub

If you have Git installed on your computer, simply create a folder in your $env:PSModulePath and pull the tree.

Set-Location -Path "~\Documents\PowerShell\Modules"
git clone https://github.com/rhymeswithmogul/$$$MODULE_NAME$$$