Windows 11 VM on Hyper-V with PowerShell
Reading Time: 4 minutesLearn how to set up a Windows 11 VM on Hyper-V using PowerShell, including remote desktop access and domain joining, with our guide.
Perch Log Shipper with Intune
Reading Time: 5 minutesEver wanted to deploy perch with intune, now you can.
Handle with PowerShell
Lets talk about Handle. Handle is an amazing program that allows you to see which program has access over a folder or file. This is a sysintel tool. Working with handle inside your powershell script is not a native thing. The first thing you will want to do is...
Finding Old Snapshots with PowerShell
Do you need to find Old Snapshots on a hyper-v server? It's super easy. So, today we will go through how to get some basic information that allows us to make judgment calls. The Script - Find Old Snapshots $Date = (Get-Date).AddDays(-7) $Vms = Get-VM | where-object {...