function ExecuteQueryWithIncrementalRetry([Microsoft.SharePoint.Client.ClientContext] $context, $retryCount, $delay) { if ($retryCount -eq $null) { $retryCount = 5 } # default to 5 if ($delay -eq $null) { $delay = 500 } # default to 500 $retryAttempts = 0 $backoffInterval = $del...
I have been working on a script that creates monthly reports at the end of the month from our SharePoint Online environment in our company. The reason behind this custom reporting scripts is to have data available about site owners, get sites that have groups Everyone and Everyone except exter...