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 »

Error code; 0x80070005-0x000004dc-0x00000524 when trying to sent an email from shared mailbox

Recently a customer was getting the error code; 0x80070005-0x000004dc-0x00000524 when trying to email ‘sent as’ from a newly created shared mailbox. After searching online I found a lot of potential solutions like; – Make sure only Full Access and Full control are set as permissions, do not use sent on behalf aswell. – Start Outlook […]

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 »

Windows 10 – Can’t open .heic files

Recently I came across some devices who can’t seem to open the new iPhone picture format .heic. I found some sites stating that only Windows needs to be up to date 1903 or higher, but in some cases that still does not resolve this. To resolve this you can install the ‘Video extensions from device […]

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 »

Sharepoint Migration Tool – Invalid SharePoint Online list

When migrating on premises files to SharePoint Online / OneDrive for Business, Microsoft made a simple tool available ‘SharePoint Migration Tool’. Sometimes you will get the ‘Invalid SharePoint Online List’ error like; “Invalid SharePoint Online list ‘Documents’”,”ACTION_STOP”,”0x0201000D” Thanks to Thomasssssss on this technet topic; https://social.technet.microsoft.com/Forums/en-US/774100d6-9a6b-4e3e-91b5-8f15f38047f4/quotinvalid-sharepoint-online-list?forum=SharePointMigrationTool i found the solution. So to get this working do […]

Read More »

Convert .qcow2 file to .vhd or .vhdx

Recently we had a ProxMox environment crash and needed to restore some files inside a VM. We did not want to rebuild the Proxmox environment and could access the virtual harddisk files used by Proxmox, in this case .qcow2 files. There is a nice tool available to convert these files to convienent .vhdx files so […]

Read More »