O365 Archives – Engineerer
-1
archive,category,category-o365,category-46,wp-custom-logo,bridge-core-3.1.2,qode-page-transition-enabled,ajax_fade,page_not_loaded,,footer_responsive_adv,hide_top_bar_on_mobile_header,qode-content-sidebar-responsive,qode-theme-ver-30.1,qode-theme-bridge,qode_header_in_grid,elementor-default,elementor-kit-641
 

O365

It's just fantastic how hard it is to call the Graph API REST endpoints through PowerShell. I couldn't let loose from this - from my point of view - big issue and went from problem to solution.TL;DRThe script: O365-Azure-Scripts/Get-StaleUsersReport.ps1 at master · engineererr/O365-Azure-Scripts (github.com).Quickly I...

Syntex is a Microsoft product that came from Project Cortex. There is surely more to come. Right know, Syntex does roughly the following:Detect Content TypeExtract data from documents into list column.To detect a Content Type you train a Syntex Classifier to detect for example a...

Additional blog posts in this series:Syntex OverviewThe SharePoint Syntex Content CenterClassify documents with SharePoint SyntexTrain your first SharePoint Syntex content extractorSharePoint Syntex is now in GA and available for purchase for $5 user/month with an annual commitment. You can explore SharePoint Syntex on your own...

Connect-PnPOnline -Url https://[tenant]-admin.sharepoint.com# get the hub site id $hubSite = Get-PnPTenantSite "https://[tenant].sharepoint.com/sites/intranet" $hubSiteId = $hubSite.HubSiteId# get all sites associated to the hub $sites = Get-PnPTenantSite -Detailed $sites | select url | % { $s = Get-PnPTenantSite $_.url if($s.hubsiteid -eq $hubSiteId){ write-host $s.url ...