I recently used SPAutoIntsaller and the servers got stuck in a continuous reboot cycle.
Checking the logs revealed that there was a problem with the appfabric installation.
Google revealed that this was related to a single quotation mark at the end of my PSModulePath.
I added the following line to the script and thought I would share it with the community.
I Propose adding the following line immediately before and after launching the prerequisite Installer:
$env:PSModulePath = $env:PSModulePath.TrimEnd('"')
Thanks Alex
Comments: Not sure how this is an issue with AutoSPInstaller; seems more like a local and relatively rare condition (which shouldn't normally exist, if I'm correct).
Checking the logs revealed that there was a problem with the appfabric installation.
Google revealed that this was related to a single quotation mark at the end of my PSModulePath.
I added the following line to the script and thought I would share it with the community.
I Propose adding the following line immediately before and after launching the prerequisite Installer:
$env:PSModulePath = $env:PSModulePath.TrimEnd('"')
Thanks Alex
Comments: Not sure how this is an issue with AutoSPInstaller; seems more like a local and relatively rare condition (which shouldn't normally exist, if I'm correct).