Skip to content

Instantly share code, notes, and snippets.

@themattconnolly
themattconnolly / Install-Solr.ps1
Last active August 22, 2019 18:42 — forked from cassidydotdk/Install-Solr.ps1
Install-Solr.ps1
Param(
$installFolder = "c:\solr",
$solrPort = "8721",
$solrHost = "solr",
$solrSSL = $true,
$downloadFolder = "$PSScriptRoot"
)
$solrVersion = "7.2.1"
$solrName = "solr-$solrVersion"