From 0c933759e2055a05f8293d0d09be94d3303a5fa3 Mon Sep 17 00:00:00 2001 From: Jeffrey Martin Date: Tue, 9 Feb 2021 08:24:57 -0600 Subject: [PATCH] download elasticsearch with https The original endpoint on http now returns a 302 that powershell does not follow. --- scripts/installs/install_elasticsearch.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/installs/install_elasticsearch.bat b/scripts/installs/install_elasticsearch.bat index e550002..50ad699 100644 --- a/scripts/installs/install_elasticsearch.bat +++ b/scripts/installs/install_elasticsearch.bat @@ -1,4 +1,4 @@ -powershell -Command "[System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true} ; (New-Object System.Net.WebClient).DownloadFile('http://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.1.1.zip', 'C:\Windows\Temp\elasticsearch-1.1.1.zip')"