mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-27 11:32:38 +00:00
22 lines
736 B
PowerShell
22 lines
736 B
PowerShell
Write-Host Part One Install
|
|
Write-Host ================
|
|
Write-Host Install Chocolatey
|
|
Write-Host Instructions from https://chocolate.org/install
|
|
|
|
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
|
|
|
|
Write-Host Install Node JS v16.11.1
|
|
|
|
choco install nodejs --version=16.11.1 -y
|
|
|
|
Write-Host Install MongoDB v 4.4.4
|
|
|
|
choco install mongodb --version=4.4.4 -y
|
|
|
|
Write-Host Install GIT
|
|
|
|
choco install git -y
|
|
|
|
Write-Host PART ONE INSTALL COMPLETE
|
|
Write-Host Close Powershell completely, open a new shell, and then run Part Two
|