Here is a list of some of the problems I ran into installing Sitecore 9 for the first time
01.
$WebsitePhysicalPath
="C:\Projects\Sitecore9Sandbox\Websites"
02.
#deploy xconnect instance
03.
$xconnectParams
= @
{
04.
Path = "$PSScriptRoot\xconnect-xp0.json"
05.
Package = "$PSScriptRoot\Sitecore 9.0.1 rev. 171219 (OnPrem)_xp0xconnect.scwdp.zip"
06.
...
07.
...
08.
...
09.
WebsitePhysicalPath = $WebsitePhysicalPath
10.
}
11.
Install-SitecoreConfiguration @xconnectParams
12.
#install sitecore instance
13.
$xconnectHostName
= "
$prefix
.
xconnect"
14.
$sitecoreParams
= @
{
15.
Path = "$PSScriptRoot\sitecore-XP0.json"
16.
Package = "$PSScriptRoot\Sitecore 9.0.1 rev. 171219 (OnPrem)_single.scwdp.zip"
17.
...
18.
...
19.
...
20.
WebsitePhysicalPath = $WebsitePhysicalPath
21.
}
22.
Install-SitecoreConfiguration @sitecoreParams