So i'm going through my testing with creating a farm in 2013 from script.
All went well but i noticed something in the event logs that had me thinking i installed the help collection before the features were installed.
So during the series of powershell cmdlets i use to configure the farm and CA for the first time i got these event IDs:
Event ID: 6141
The site /sites/Help could not be created. The following exception occurred: Feature with Id '87294c72-f260-42f3-a41b-981a2ffce37a' is not installed in this farm, and cannot be added to this scope..
Event ID: 6398
The Execute method of job definition Microsoft.SharePoint.Help.HelpCollectionInstallerJob (ID dcc87c24-837c-4e69-b7f0-9c17b952361e) threw an exception. More information is included below.
Feature with Id '87294c72-f260-42f3-a41b-981a2ffce37a' is not installed in this farm, and cannot be added to this scope.
The series i'm using has the cmdlet "Install-SPHelpCollection -All" kicking off before "Install-SPFeature
-AllExistingFeatures"
To me in my head...these event errors pop up because the features are not loaded yet, am i correct in this assumption? Would there be any issue in loading the "Install-SPHelpCollection -All" after the "Install-SPFeature -AllExistingFeatures"
Or should i just run the "Install-SPHelpCollection -All" at the end of it all just to make sure it sets things up correctly?