hello
in SP\AutoSPInstaller\AutoSPInstallerMain.ps1
BUG in string line from 242 to 251
if ($env:spVer -ge "15") # These are for SP2013+ only
{
CreateAppManagementServiceApp $xmlinput
CreateSubscriptionSettingsServiceApp $xmlinput
CreateWorkManagementServiceApp $xmlinput
CreateMachineTranslationServiceApp $xmlinput
CreateAccessServicesApp $xmlinput
CreatePowerPointConversionServiceApp $xmlinput
ConfigureDistributedCacheService $xmlinput
}
this code run only SP 2013 but not run in 2016!
Comments: ** Comment from web user: brianlala **
in SP\AutoSPInstaller\AutoSPInstallerMain.ps1
BUG in string line from 242 to 251
if ($env:spVer -ge "15") # These are for SP2013+ only
{
CreateAppManagementServiceApp $xmlinput
CreateSubscriptionSettingsServiceApp $xmlinput
CreateWorkManagementServiceApp $xmlinput
CreateMachineTranslationServiceApp $xmlinput
CreateAccessServicesApp $xmlinput
CreatePowerPointConversionServiceApp $xmlinput
ConfigureDistributedCacheService $xmlinput
}
this code run only SP 2013 but not run in 2016!
Comments: ** Comment from web user: brianlala **
"-ge" means "Greater than or equal to". 16 is greater than 15, so the code will and does run.
Brian