Reading Time: < 1 minute
Azure AD Hardening- Revoke disabled sign-in tokens

Azure AD Hardening- Revoke disabled sign-in tokens

Reading Time: < 1 minute As part of my efforts to harden clients’ azure accounts, We need to remove/refresh all the sign-in tokens from the disabled account. Why? That’s very simple, If you don’t, then any signed-in device still has access. For example, if I…

read more…
Microsoft Safety Scanner Powershell One Liner

Microsoft Safety Scanner Powershell One Liner

Reading Time: < 1 minute A client called in and told me a line of information that made me concerned about security. I ran a webroot scan and wanted to give another level of the scan. I am partial to the Microsoft Safety Scanner. It runs well connectwise backstage….

read more…
Dynamic Groups in Azure AD – Windows 10/11

Dynamic Groups in Azure AD – Windows 10/11

Reading Time: 3 minutes Dynamic Groups in Azure AD is something that will change how you work. Inside my azure AD, I want a group for my windows 10 devices and a group for my windows 11 devices. Dynamic Groups allow you to set parameters for the members of that group….

read more…
Install Sentinel One with Intune

Install Sentinel One with Intune

Reading Time: 5 minutes It’s time to Install Sentinel One. In this blog, we are going to go through the process of installing Sentinel One through Intune. We are going to be using the IntuneWinAppUtil program, and the MSI download of Sentinel one that you can obtain…

read more…
Handle with PowerShell

Handle with PowerShell

Reading Time: 4 minutes 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…

read more…
Finding Old Snapshots with PowerShell

Finding Old Snapshots with PowerShell

Reading Time: 2 minutes 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 =…

read more…
Install Perch with PowerShell

Install Perch with PowerShell

Reading Time: 4 minutes Perch is an event log tracker that can catch a lot of useful information. I like perch because it captures failed login information. It’s easy to sort and exportable. This is why many companies use the software. There are some gatchya’s with…

read more…
Wait for service to appear – PowerShell

Wait for service to appear – PowerShell

Reading Time: 3 minutes This past week I had to install a piece of software that took 30 minutes to install. The software had multiple levels of processes that made the -wait feature completely useless. The best way to know the software was installed is to detect the…

read more…