Skip to content

Instantly share code, notes, and snippets.

View RobsonAutomator's full-sized avatar

Ro Se RobsonAutomator

View GitHub Profile
@RobsonAutomator
RobsonAutomator / DownloadFromSitecore.ps1
Created November 27, 2017 12:07 — forked from jermdavis/DownloadFromSitecore.ps1
Download files from dev.sitecore.net from the commandline
param(
[Parameter(Mandatory=$true)]
[string]$url,
[Parameter(Mandatory=$true)]
[string]$target
)
function Fetch-WebsiteCredentials
{
$file = "dev.creds.xml"
@RobsonAutomator
RobsonAutomator / Install-Solr.ps1
Created November 2, 2017 23:19 — forked from jermdavis/Install-Solr.ps1
A PowerShell script to help installing Solr as a service
Param(
$solrVersion = "6.6.2",
$installFolder = "c:\solr",
$solrPort = "8983",
$solrHost = "solr",
$solrSSL = $true,
$nssmVersion = "2.24",
$JREVersion = "1.8.0_151"
)
@RobsonAutomator
RobsonAutomator / Install Solr.ps1
Created April 14, 2017 15:16 — forked from kamsar/Install Solr.ps1
Sitecore Solr Cannon
# This script will set up (and install if needed) Apache Solr for a Sitecore instance.
# This does NOT configure Sitecore to use Solr,
# just the Solr server and cores for Sitecore to connect to once it is set up to use Solr.
# So, what does it do?
#
# * Installs SOLR, if needed, from the Bitnami SOLR stack: https://bitnami.com/stack/solr/installer
# * Creates a SOLR config set for the cores to share (shared schema)
# * Creates SOLR cores for all Sitecore indexes, including secondary cores to support online reindexing (Switch on Rebuild)