scripts/Windows/install_postgres10.ps1
#Write-Host "Pre-installing vcredist2013 (PostgreSQL 10.6 instalation has issues when doing it)..." -ForegroundColor Cyan #choco install vcredist2013 Write-Host "Installing PostgreSQL 10.6..." -ForegroundColor Cyan Write-Host "Downloading..." # http://www.enterprisedb.com/products-services-training/pgdownload#windows $exePath = "$($env:USERPROFILE)\postgresql-10.6-1-windows-x64.exe" (New-Object Net.WebClient).DownloadFile('https://get.enterprisedb.com/postgresql/postgresql-10.6-1-windows-x64.exe', $exePath) Write-Host "Installing..." cmd /c start /wait $exePath --mode unattended --install_runtimes 0 --superpassword Password12! del $exePath Write-Host "Setting up services..." Stop-Service postgresql-x64-10 Set-Service -Name postgresql-x64-10 -StartupType Manual Write-Host "PostgreSQL 10.6 installed" -ForegroundColor Green |