Guest User

Untitled

a guest
Jun 8th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. "Parameters": {
  2. "Package": {
  3. "Type": "string",
  4. "Description": "The path to the Web Deploy package to deploy.",
  5. "Value": "C:\sitecore\install\Sitecore9.0.0 rev.171002__single.scwdp.zip"
  6. },
  7. "LicenseFile": {
  8. "Type": "string",
  9. "Description": "The path to the Sitecore license file.",
  10. "Value": "C:\sitecore\install\license.xml"
  11. },
  12. "SqlDbPrefix": {
  13. "Type": "string",
  14. "Description": "The prefix used for all Sql databases.",
  15. "Value": "sc9"
  16. },
  17. "SolrCorePrefix": {
  18. "Type": "string",
  19. "Description": "The prefix used for all Solr cores.",
  20. "Value": "SOLR6"
  21. },
  22. "XConnectCert": {
  23. "Type": "string",
  24. "Description": "The certificate to use for encryption. Provide the name or the thumbprint."
  25. },
  26. "SiteName": {
  27. "Type": "string",
  28. "DefaultValue": "sitecore9",
  29. "Description": "The name of the site to be deployed."
  30. },
  31.  
  32. $SqlMarketingAutomationPassword = "Sup3rSecureS1tecore_pass!"
  33.  
  34. $xconnectParams = @{
  35. Path = "$PSScriptRootxconnect-xp0.json"
  36. Package = "$PSScriptRootSitecore 9.0.1 rev. 171219 (OnPrem)_xp0xconnect.scwdp.zip"
  37. LicenseFile = "$PSScriptRootlicense.xml"
  38. SiteName = $XConnectCollectionService
  39. XConnectCert = $certParams.CertificateName
  40. SqlDbPrefix = $prefix
  41. SqlServer = $SqlServer
  42. SqlAdminUser = $SqlAdminUser
  43. SqlAdminPassword = $SqlAdminPassword
  44. SolrCorePrefix = $prefix
  45. SolrURL = $SolrUrl
  46. SqlMarketingAutomationPassword = $SqlMarketingAutomationPassword
  47. }
Add Comment
Please, Sign In to add comment