Using SPModule to install SharePoint – DateTime Issue with the StartDate
If you are getting a datetime issue (cannot convert to DateTime) with the out of the box SharePoint install with SPModule when using the New-SharePointFarm command change line 81 of New-SharePointFarm.ps1 from
$RunSettings.StartTime = Get-Date -Format ‘dd-MMM-yyyy HH:mm:ss’
to
$RunSettings.StartTime = Get-Date -Format ‘dd-MM-yyyy HH:mm:ss’
Categories: Uncategorized
Powershell, SharePoint
Thank you for this hint