Blog
This is my blog section. Here all new blog posts will be showed in reverse-chronological order. Just a fancy way to say newest-top.
At the left, you can view the categories, and on the right you can find the tags and Table of contents.
Azure VPN Gateway Maintenance - How to configure
Wednesday, January 01, 2025 in Microsoft Azure
Categories:
3 minute read
Why configure a maintenance configuration? We would want to configure a maintenance configuration for our VPN gateway to Azure to prevent unwanted updates during business hours. Microsoft doesn’t publish when they perform updates to their …
Create AD users with on demand script
Friday, December 27, 2024 in PowerShell
Categories:
4 minute read
Today I have a PowerShell script that creates users by asking the user what to fill in. This works by having a fully prepared “New-ADUser” command with all the properties filled in to have all users using the same attributes. I will …
Module 5: Storage in Azure
Saturday, December 21, 2024 in Azure Master Class
Categories:
10 minute read
This module focuses purely on the various storage services that Azure offers and provides. Additionally, we will explore the different options available to increase redundancy and apply greater resilience. The importance and types of storage Storage …
Managing Hyper-V server without Active Directory
Tuesday, December 17, 2024 in Windows Server
Categories:
4 minute read
When you use Hyper-V server, you want to manage this with the management tools. However, by default Hyper-V only allows connections from domain-joined machines by design because of security and trust reasons. We can bypass this requirement by …
Set a domain alias for every user in Microsoft 365
Friday, December 13, 2024 in Microsoft 365
Categories:
2 minute read
Logging in Exchange Online Powershell To configure a alias for every user, we need to login into Exchange Online Powershell: POWERSHELL Connect-ExchangeOnline If you don’t have the module already installed on your computer, run the following …
Azure Key Vault
Tuesday, November 26, 2024 in Archive
Categories:
2 minute read
Azure Key Vault is a type of vault used to store sensitive technical information, such as: Certificates Secrets Keys What sets Azure Key Vault apart from a traditional password manager is that it allows software to integrate with the vault. Instead …
The Zero Trust-model
Monday, November 25, 2024 in Archive
Categories:
4 minute read
The Zero Trust model is a security model to enhance your security posture by using 3 basic principles, and segmenting aspects of your IT environment into pillars. The 3 primary principles are: Verify Explicitly Least privileged access Assume Breach …
The MITRE ATTACK Framework
Monday, November 25, 2024 in Archive
Categories:
3 minute read
The MITRE ATTACK (ATT&CK) Framework is a framework which describes all stages and methods cyberattacks attacks are launched on companies in the last 15 years. The main purpose of the framework is to help Red and Blue security teams to harden …
Module 4: Resiliency and Redundancy in Azure
Thursday, November 21, 2024 in Azure Master Class
Categories:
8 minute read
This module is all about resiliency and redundancy in Microsoft Azure. Resiliency literally means flexibility. It refers to how resistant a solution is to certain issues and failures. We want to build our solutions redundant, because we don’t …
How to Export Active Directory (AD) users fast and easy
Thursday, November 14, 2024 in PowerShell
Categories:
3 minute read
Sometimes we need to export all of our AD users. The one time for applying changes, sometimes for monitoring the inventory but often for licensing purposes. At this page I will show you how to export all your AD users fast and easy. The Export AD …