-
Notifications
You must be signed in to change notification settings - Fork 8
Home
Sitecore Install Extensions (SIX) is a set of extensions modules for Sitecore Install Framework and works in the same way.
Set-ExecutionPolicy Bypass -Scope Process -Force;
iex ((New-Object System.Net.WebClient).DownloadString('http://bit.ly/installmodules'))
Before Sitecore installation, we need to collect all files required for the installation process. You can download each time all data from the Sitecore download page or create storage where all the necessary files will be collected. With SIX we decide to build central storage where we collect all files necessary for the Sitecore installation. We build our central storage base on Azure Storage, you can read more here. All SIX scripts base on assumption that all files required for installation are downloaded from Azure Storage. You can of course provide your own storage, and create own configuration to download files.
Just copy&paste&execute the following script to download installation script.
$installScriptUrl = "https://raw.githubusercontent.com/SoftServeInc/SitecoreInstallExtensions/master/install-sitecore9-xp0.ps1"
$installRoot = "C:\SC9-install"
md $installRoot
cd $installRoot
Invoke-WebRequest -Uri $installScriptUrl -OutFile "$installRoot\install-sitecore9-xp0.ps1"
explorer $installRoot