From 481e944c66328cd677c31d7c8e8622b9835e1a53 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 30 Dec 2017 19:31:21 -0700 Subject: [PATCH] Update install.ps1 --- windows/install.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/windows/install.ps1 b/windows/install.ps1 index f92a968..3266afc 100644 --- a/windows/install.ps1 +++ b/windows/install.ps1 @@ -178,7 +178,7 @@ Function Install-PostgresODBC() { Function Start-PSQL([string]$command) { $location = Get-Location - Set-Location "C:\Program Files\PostgreSQL\9.6\bin" + Set-Location "C:\Program Files\PostgreSQL\10.1\bin" .\psql.exe --username=postgres -c "$command" Set-Location $location } @@ -220,10 +220,10 @@ Function Install-PostgreSQL() { return } if ($env:PROCESSOR_ARCHITECTURE -eq "x86") { - $url = "https://get.enterprisedb.com/postgresql/postgresql-9.6.3-3-windows.exe" + $url = "https://get.enterprisedb.com/postgresql/postgresql-10.1-3-windows.exe" } else { - $url = "https://get.enterprisedb.com/postgresql/postgresql-9.6.3-3-windows-x64.exe" + $url = "https://get.enterprisedb.com/postgresql/postgresql-10.1-3-windows-x64.exe" } Write-Host Download PostgreSQL from $url -ForegroundColor Cyan