Add subfolders to Edge favorites via InTune

I’ve been asked to create favorites in Edge to be rolled out via InTune. The wish was to have a structure with folders and subfolders, like this; Main folder – URL1 – Subfolder — URL2 — SubSubFolder — URL3 I came across a lot of forum posts but could not find a nice template for […]

Read More »

SharePoint Online – Change timezone for all SPO Sites

Today i needed to change the TimeZone for a lot of sites, when searching online i found some other scripts but i found them too complicated and needed something easier to manage. I combined and script some other script and came up with this: # Define variable $adminurl = https://tenantname-admin.sharepoint.com $timezone = “(UTC+01:00) Amsterdam, Berlijn, […]

Read More »

SharePoint Online – Give permission to single user on all SharePoint Online sites

I was looking for a way to grant a single user permissions on all sharepoint sites without giving admin permissions. In the end only a single PowerShell command was needed to accomplish this (apart from running ‘Connect-SPOService’) Get-SPOSite | ForEach {Set-SPOUser -Site $_.Url -LoginName info@iterrors.com -IsSiteCollectionAdmin $true} Where info@iterrors.com is the username you want to […]

Read More »

Microsoft 365 – Create an organization library

Alot of posts have been written about the late-2019 rolled out feature to create organization library’s. After playing around a bit I’ve decided to make a short manual on how to achieve these 2 types of library’s. General info for this topic I used is: https://docs.microsoft.com/en-us/sharepoint/organization-assets-library There are two types of Organization asset types; 1. […]

Read More »

SharePoint Online Migration Tool – Scan File Failure:The item created time or modified time is not supported

When migrating to SharePoint Online / OneDrive for business, you could get the error: Scan File Failure:The item created time or modified time is not supported This seems because the file or folder doensnt have a (valid) creation date, in my case it had the value “4-3-1601 05:27:48”. To resolve this issue, the files need […]

Read More »