From b790154fdf7ff685e8db2dccf3cac94470aa3874 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Thu, 14 Sep 2017 13:15:28 -0400 Subject: [PATCH] Include windows groups in the identity --- TGServerService/ServerService.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TGServerService/ServerService.cs b/TGServerService/ServerService.cs index 192b37ecf4..ef921fc2b3 100644 --- a/TGServerService/ServerService.cs +++ b/TGServerService/ServerService.cs @@ -151,6 +151,7 @@ namespace TGServerService AddEndpoint(I); host.Credentials.ServiceCertificate.SetCertificate(StoreLocation.LocalMachine, StoreName.My, X509FindType.FindBySubjectName, Config.CertificateURL); + host.Credentials.UserNameAuthentication.IncludeWindowsGroups = true; host.Open(); //...or maybe here, doesn't really matter }