Created
January 12, 2018 01:03
-
-
Save fluxdigital/5bc46179bf5011fa3c193f05aaa7f176 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# Add the Sitecore MyGet repository to PowerShell | |
Register-PSRepository -Name SitecoreGallery -SourceLocation https://sitecore.myget.org/F/sc-powershell/api/v2 | |
# Install the Sitecore Install Framwork module | |
Install-Module SitecoreInstallFramework | |
# Install the Sitecore Fundamentals module (provides additional functionality for local installations like creating self-signed certificates) | |
Install-Module SitecoreFundamentals | |
# Import the modules into your current PowerShell context (if necessary) | |
Import-Module SitecoreFundamentals | |
Import-Module SitecoreInstallFramework |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment