Forum Discussion
Deleted
Feb 20, 2017Programmatically creation of Office 365 Groups
I can create an Office 365 Group with PnP PowerShell (https://msdn.microsoft.com/en-us/pnp_articles/modern-experience-customizations-provisioning-sites) with no problems at all - both the Office 365 ...
- Aug 25, 2017
You are one lazy.... ;)
Tenant tenant = new Tenant(clientContext);
var site = tenant.GetSitePropertiesByUrl(siteUrl, false);
clientContext.Load(site, s => s.Status);
site.Context.ExecuteQueryRetry();
var status = site.Status;
Jan Tibell
Feb 21, 2017Brass Contributor
For what its worth, i´m also doing some Unified Groups PNP wizardry. and when i create a Group with PNP powershell, it will be created faster if i set it to public instead of private.
when i create private groups it takes about 5 mins before i can run commands on the underlying site.