When will SolidCP support upcoming Sharepoint 2016?
Thank you for your reply in advance.
Nikola
Hello,
We should have added support for Sharepoint 2016 with the next stable release in May.
It is currently not yet added to the beta though as i am still working on the Skype for Business alpha code, once thats completed i will work on Sharepoint 2016.
Regards,
Marco
Hi Marco,
Thank you for quick reply! Really appreciate that! Keep up with a good work!
Best regards,
Nikola
Hi Marco,
Do you have approximate date when will Sharepoint 2016 be supported?
Best regards,
Nikola
Hello,
It’s been added in the may release (version 1.0.3)
So if you have the current stable sharepoint 2016 should be working in it.
Do note if you use sharepoint enterprise 2016 you might need a fix in the DB:
Run this in a query on the SolidCP Database:
IF NOT EXISTS (SELECT * FROM [dbo].[Providers] WHERE [DisplayName] = 'Hosted SharePoint Enterprise 2016')
BEGIN
DECLARE@provider_id AS INT
DECLARE@group_id AS INT
SELECT@group_id = GroupId FROM [dbo].[ResourceGroups] WHERE GroupName = 'Sharepoint Enterprise Server'
SELECT TOP 1@provider_id = ProviderId + 1 From [dbo].[Providers] ORDER BY ProviderID DESC
INSERT [dbo].[Providers] ([ProviderID], [GroupID], [ProviderName], [DisplayName], [ProviderType], [EditorControl], [DisableAutoDiscovery])
VALUES (@provider_id,@group_id , N'HostedSharePoint2016Ent', N'Hosted SharePoint Enterprise 2016', N'SolidCP.Providers.HostedSolution.HostedSharePointServer2016Ent, SolidCP.Providers.HostedSolution.SharePoint2016Ent', N'HostedSharePoint30', NULL)
END
GO
Regards,
Marco