Skip to content

Instantly share code, notes, and snippets.

@kustomservices
Last active August 8, 2019 14:08
Show Gist options
  • Save kustomservices/c85c89000893bf12a7f3cbda894780f2 to your computer and use it in GitHub Desktop.
Save kustomservices/c85c89000893bf12a7f3cbda894780f2 to your computer and use it in GitHub Desktop.
Installing Meerkat
$Modules = "C:\Program Files\WindowsPowerShell\Modules\"
New-Item -ItemType Directory $Modules\Meerkat\ -force
Invoke-WebRequest https://github.com/TonyPhipps/Meerkat/archive/master.zip -OutFile $Modules\master.zip
Expand-Archive $Modules\master.zip -DestinationPath $Modules
Copy-Item $Modules\Meerkat-master\* $Modules\Meerkat\ -Force -Recurse
Remove-Item $Modules\Meerkat-master -Recurse -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment