In this tutorial I will show you how to setup Microsoft Intune for iOS/iPadOS. In short we will make sure that devices can be configured and secured to your standards. Let’s jump right in and setup Microsoft Intune. For this post I will be solely focussing on manual enrollment. In addition to that, I will…
Configure Azure AD authentication on Linux VMs in Azure
Using Azure AD authentication on Linux VMs can give you a few benefits. It improves security by centralising authentication and enforce policies that give access to the VMs. This means a better access management. In this post you will learn how to create and configure an Azure Linux VM to use Azure AD authentication.
How to implement Windows Defender Credential Guard
Windows Defender Credential Guard uses virtualization-based security to secure secrets on Windows 10 Enterpirse and Windows Server 2019 machines. Using this method, only privileged system software can access them. Windows Defender Credential Guard will help preventing unauthorized access that can lead to credential theft attack. In this tutorial I will show you how to prepare…
Enrol test devices into Windows Autopilot
Deploying Windows 10 devices with Windows Autopilot and Microsoft Intune is worth looking into. Windows Autopilot can automatically configure these devices and enrol them in your organisation. In this post you will learn how to enrol a Windows 10 virtual machine into the Windows Autopilot program.
Install a Domain Controller with Windows Server 2019 Core
Just a quick post about Windows Server 2019 Core. Once in a while I just rebuild my whole development environment including my Windows Server Core virtual machines. Rebuilding a Domain Controller is pretty easy, but requires just a few steps you’ll have to take one after another.
Create your first basic API in PowerShell using Pode
In this post I will cover my first experiences using Pode to create my own basic API. Pode is a Cross-Platform PowerShell framework for creating web servers to host REST APIs, Web Sites, and TCP/SMTP Servers.
Download package content and use it with PowerShell during task sequence
Recently I discovered the Download Package Content task. You would use this mainly to quickly download some files into your task sequence environment. This could be in the normal OS, or during OSD in WinPE. Recently I had a use case why this task comes in handy.
Application installation randomly fails in SCCM task sequence
Working on the new Windows 1903 deployment, our goal is to deliver a faster and more clean deployment task sequence. We stripped some unnecessary tasks and changed the order of tasks. Because we’re in the development phase, we keep changing things on the fly. But last week, we experienced a strange problem. Applications would randomly…
Faster driver implementation in your deployment Task Sequence using SCCM
I am currently working on the new Windows 10 v1903 at my company and our main goal is to deliver a fast and automated deployment. Implementing drivers through driver packages in SCCM can be very time consuming, so we needed a solution for that. And luckily, we found one. It’s very easy and maintainable. Here’s…
Create custom SCCM Task Sequence variables using PowerShell
Last week I worked on BIOS updates for our Dell desktops and our HP laptops in Windows PE. I’ve created lots of new tasks with WMI queries to determine the model. After a BIOS update the machine needs a reboot, but doesn’t when already updated. To keep things fast and clean, I needed to find…