Windows update breaks remote desktop app – KB5074109 [Fixed]

Early january Microsoft released KB5074109 which breaks connecting to Remote Desktop via de Windows App. The update had number KB5074109, Microsoft released an OOB (Out of band) update to resolve the issue. [KB5077744] I created 2 scripts so you can fix this for the affected machines remotely (if you are able to execute powershell commands). […]

Read More »

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 »

PowerPoint error when importing icons

When in PowerPoint (or word etc) you can import icons to your slides by going to ‘Insert -> Icons’. You can get a error like below; “An error occurred while importing this file. https://cdn.hubblecontent.osi.office.net/icons/publish/icons_statistics_ltr/statistics_ltr.svg” To fix this issue, open Internet Explorer, go to settings -> advanced -> and search for “Don’t save encrypted pages to […]

Read More »

The trust relationship between this workstation and the primary domain failed

This can happen if a computer/server is offline for a longer period, or is restored from backup and in the meantime the computerobject password is changed. There is an easy fix for this, on the affected machine, login with the local administrator, start powershell and type; reset-computermachinepassword -Server DomainController -Credential DomainAdmin

Read More »

Purge ADObject from Active Directory recycle bin

When deleting an AD object, it will (if the Recycle bin is enabled) be moved to the Active Directory recycle bin. Sometimes you want to permamently remove the object, for example if you want to recreate a pc or server with the same name. To do this, open PowerShell and type in the following commands; […]

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 »

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 »

PowerShell – Change homedirectory permissions in bulk.

Recently I was asked to change the homedirectory permissions for >4000 users from Full Control, to ready only. I’ve used below powershell commands to achieve this. Firstly we need to get all SamAccountName’s in a .csv list. (Change the searchbase). Get-ADUser -Filter * -SearchBase “OU=www,DC=iterrors,DC=com” | Where { $_.Enabled -eq $True} | select SamAccountName | […]

Read More »

Sharepoint Online – Add members and owners via PowerShell

To add members and owners to a SharePoint Online TeamSite you have the below commands avaiable: Note that if you need to make someone Owner of the Teamsite, the user first needs to be member! And then you make the user Owner. #Get Groupnames Get-UnifiedGroup #Check for current members Get-UnifiedGroupLinks –Identity “groupname” –LinkType Members #Check […]

Read More »