Using Paysafecard for Grand National Wagering

The problem that keeps punters up at night Every year the Grand National turns the UK into a betting hurricane, but a massive chunk of that storm is a headache: payment friction. Traditional banks, credit checks, and endless verification hoops drain the excitement faster than a wet fence jump. Why instant cash matters on race […]

Read More »

How to Bet on the US Open Tennis

Know the Courts, Know the Money First thing: the hard courts in Flushing aren’t just concrete; they’re a speed‑cooker that speeds up serve‑and‑volley. If you ignore surface dynamics you’ll be betting blindfolded. By the way, the top players pivot their strategies here, and your wagers should pivot with them. Pick Your Market, Then Own It […]

Read More »

Analyzing the “Clean Sheet” Probability of Top‑Tier Defenses

Why the clean‑sheet metric is the betting holy grail Every smart punter knows a shut‑out is worth its weight in gold. A defense that locks the net once every three matches drags the odds up, the payout down. The problem? Most casual bettors treat clean sheets like a side note, not the centerpiece of a […]

Read More »

The Importance of Geofencing for Compliant Betting Agents

Why Geofencing Is No Longer Optional Imagine your betting platform as a bustling border checkpoint. Without geofencing, every user, every mobile, every IP just strolls in, regardless of jurisdiction. Regulators see that as a free‑for‑all, and they love to slap fines faster than a hawk dives on a field mouse. The problem hits hard: compliance […]

Read More »

The Role of Timing in Placing Your Bets

Why the Clock Beats the Bookie Every seasoned bettor knows that a match isn’t just a showdown of skill; it’s a ticking time bomb of information. The moment the whistle blows, odds shift faster than a neon sign in Times Square. If you stare at the screen for ten seconds, the bookmaker may already have […]

Read More »

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 »