Hello
Hi
I do not know if you are entering the correct If not excuse me.
When installing Sharepoint 2013 script stop with this error.
Could not find SharePoint Server Setup log file!
After a search of a problem, I found it in the script AutoSPInstallerFunctions.ps1
is on line 921 function to search for a file {$ _. -like Name" SharePoint Server Setup * "}, but installation creates a file in the format SetupExe(xxxxxxxxx).
I rewrote follows: {$ _. -like Name" SetupExe* "}
Next installation goes through without errors.
Sorry my bad English...
Kamil
Comments: ** Comment from web user: WarrenRoscoe **
Hi
I do not know if you are entering the correct If not excuse me.
When installing Sharepoint 2013 script stop with this error.
Could not find SharePoint Server Setup log file!
After a search of a problem, I found it in the script AutoSPInstallerFunctions.ps1
is on line 921 function to search for a file {$ _. -like Name" SharePoint Server Setup * "}, but installation creates a file in the format SetupExe(xxxxxxxxx).
I rewrote follows: {$ _. -like Name" SetupExe* "}
Next installation goes through without errors.
Sorry my bad English...
Kamil
Comments: ** Comment from web user: WarrenRoscoe **
My setup also failed with this error. I used the following versions:
- autospinstaller 3.98
- sharepoint - en_sharepoint_server_2013_with_sp1_x64_dvd_3823428.iso
My log files was named: SharePoint-2013-Setup-20150411180127DA0.log
In my case both the following produced results:
Get-ChildItem -Path (Get-Item $env:TEMP).FullName | ? {$_.Name -like "*SharePoint-*-Setup*"}
Get-ChildItem -Path (Get-Item $env:TEMP).FullName | ? {$_.Name -like "*SharePoint*Setup*"}
I opted for the second line.