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
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
Hi Marco,
“HKLM\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\16.0″ does exist
HKLM\SOFTWARE\Wow6432Node\Microsoft\Shared Tools\Web Server Extensions\16.0 Doesn’t exist in registry
C:\Program Files\Common Files\microsoft shared\Web Server Extensions\16\HCCab; does Exist