Techy

Joined July 2024
Photos and videos
SpielTech retweeted
Need to get a list of all the inactive users in your tenant? Here's a quick one liner
Nice one-liner to list all users who haven't signed into Entra in the last 90 days excluding accounts who haven't signed in at all :) Get-MgBetaUser -All -Property SignInActivity | Select-Object UserPrincipalName,@{label="LastSuccessfulSignInDateTime";expression={$_.SignInActivity.LastSuccessfulSignInDateTime}},@{label="LastNonInteractiveSignInDateTime";expression={$_.SignInActivity.LastNonInteractiveSignInDateTime}} | Where-Object { $_.LastSuccessfulSignInDateTime -lt (Get-Date).AddDays(-90) -and $_.LastNonInteractiveSignInDateTime -lt (Get-Date).AddDays(-90) -and -not($null -eq $_.LastSuccessfulSignInDateTime -and $null -eq $_.LastNonInteractiveSignInDateTime) }
7
70
506
67,333
SpielTech retweeted
Troubleshooting tip: Quickly find all the relevant event logs when troubleshooting in Windows - using Process Monitor. Full blog post and details: theexperienceblog.com/2024/0… Short summary: Use Process Monitor, then reproduce or perform the action at hand, and filter on evtx files to find the relevant event logs. #windows #troubleshooting #sysinternals #processmonitor #procmon
2
33
150
16,044
SpielTech retweeted
IntuneDeviceDetailsGUI - Intune admins, save time and effort with this PowerShell script that helps you view detailed device data and understand app/configuration targeting. buff.ly/3T156xa #Intune #PowerShell #DeviceManagement
1
25
110
10,675
SpielTech retweeted
Anyone else getting lots of questions about BitLocker since Intune changed the GUI/docs? They removed all the references to Azure AD/Entra ID, now just "AD DS", and it's confusing people... First image is what it used to look like, second image is what it looks like now
13
16
93
15,756
SpielTech retweeted
31 Jul 2024
Are your BitLocker keys stored in Entra ID? Are you sure? There was a recent Issue where devices might boot into BitLocker recovery with the July 2024 security update. Some people have learned the hard way that it's essential to verify if the BitLocker key is actually escrowed to Entra ID. To address this, I created a script that retrieves all Windows devices from Intune and checks if each device has a BitLocker key stored in Entra ID. Download: github.com/ugurkocde/Intune/… Here is a detailed blog post by Michael that offers you a way to actively run a script that uploads the key to EntraID: mikemdm.de/2023/09/24/intune… #MSIntune #EntraID #Bitlocker
7
57
195
20,850
SpielTech retweeted
Secure Boot is completely broken on 200 models from 5 big device makers. Keys were labeled "DO NOT TRUST." Nearly 500 device models use them anyway. arstechnica.com/security/202…
3
59
98
11,626
SpielTech retweeted
[New Blog] Intune does not support excluding users for FSLogix for Intune Manged AVD via a config profile. So, I created a remediation to do so! Check it out in my latest blog :-) nielskok.tech/azure-virtual-… #AVD #IntuneManaged #FSLogix
10
24
1,810