This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
This script contains the Add-Feature and Add-Foundation methods which can be used to add a new module to a Sitecore Helix based Visual Studio solution. | |
The Visual Studio solution should contain a add-helix-module-configuration.json file containing variables which this script will use. | |
The Add-Feature and Add-Foundation methods can be run from the Pacakge Console Manager as long as this script is loaded in the relevant PowerShell profile. | |
Run $profile in the Pacakge Manager Console to verify the which profile is used. | |
Author: Varun Shringarpure |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.SYNOPSIS | |
This PowerShell Scrip Adds the website name given by the user to the Hosts file pointing to 127.0.0.1 | |
Author: Varun Shringarpure | |
#> | |
Write-Host "Hosts File prior to adding the website binding" | |
Get-Content C:\Windows\System32\drivers\etc\hosts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param( | |
$solrVersion = "6.6.2", | |
$installFolder = "c:\solr\SC902", | |
$solrPort = "9393", | |
$solrHost = "solr", | |
$solrSSL = $true, | |
$nssmVersion = "2.24", | |
$JREVersion = "1.8.0_111", | |
$solrInstanceName ="solrSC902" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Thank you Sitecore for the Script in the Installation Guide of Sitecore Experience Platform 9 Update 2 | |
#define parameters | |
$prefix = "SC-902" | |
$PSScriptRoot = "C:\Varun\Sitecore-Plain-Instance-Repository\SC-9-Update-2\PowerShell-Scripts" | |
$XConnectCollectionService = "$prefix.xconnect" | |
$sitecoreSiteName = "$prefix.sc" | |
$SolrUrl = "https://solr:9393/solr" | |
$SolrRoot = "c:\solr\SC902\solr-6.6.2" | |
$SolrService = "solrSC902" | |
$SqlServer = ".\sqlexpress16sp1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Thank you Sitecore for the Script in the Installation Guide of Sitecore Experience Platform 9 Update 1 | |
#define parameters | |
$prefix = "SC-XC901" | |
$PSScriptRoot = "C:\Varun\Sitecore-Plain-Instance-Repository\SC-XC-9\Powershell-Scripts" | |
$XConnectCollectionService = "$prefix.xconnect" | |
$sitecoreSiteName = "$prefix.sc" | |
$SolrUrl = "https://solr:9192/solr" | |
$SolrRoot = "C:\Solr\SC9\solr-6.6.2" | |
$SolrService = "solr-6.6.2" | |
$SqlServer = ".\sqlexpress16sp1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param( | |
$zooKeeperInstanceName = "zookeeperNode1", | |
$zooKeeperVersion = "3.4.14", | |
$installFolder = "c:\ZooKeeper\FirstNode", | |
$zooKeeperNode = "1", | |
$zooKeeperPort = "2141", | |
$zooKeeperHost = "zookeeper1", | |
$zooKeeperSSL = $true, | |
$nssmVersion = "2.24", | |
$JREVersion = "1.8.0_111", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param( | |
$solrVersion = "7.2.1", | |
$installFolder = "c:\solr\solrnode1", | |
$solrPort = "8983", | |
$solrHost = "solr1.uhgcloud.com", | |
$solrSSL = $false, | |
$nssmVersion = "2.24", | |
$JREVersion = "1.8.0_111", | |
$solrInstanceName ="solrnode1", | |
$zooKeeperNode1 = "zookeeper1", |