Skip to main content

Dynamische Gruppen in Entra AD – Geräte

Hier sind einige hilfreiche Regeln für die dynamische Gruppenmitgliedschaft von Geräten. All Devices – Microsoft: (device.manufacturer -eq "Microsoft") All Devices – Dell: (device.manufacturer -eq "Dell") All Devices – Lenovo (device.manufacturer -eq "Lenovo") All Devices – Rooted: (device.isRooted -eq "True") All Devices – Autopilot profile: (device.enrollmentProfileName -startsWith "Autopilot Profile Name") All Devices – Hybrid & Azure AD Joined: (device.deviceTrustType -in ["Hybrid Azure AD joined","Azure AD joined"]) All Devices – Enterprise Edition: (device.operatingSystemSKU...

Weiterlesen

Entra: Eingerichtete MFA Methoden auslesen

Nützliches Script mit Powershell die Sicherheitsinformationen der eingerichteten MFA Methoden in Microsoft Entra/Identitäten (AzuraAD) aller Benutzer auslesen und als csv speichern. Param ( [Parameter(Mandatory = $false)] [switch]$CreateSession, [switch]$MFAEnabled, [switch]$MFADisabled, [switch]$LicensedUsersOnly, [switch]$SignInAllowedUsersOnly ) Function Connect_MgGraph { #Check for module installation $Module=Get-Module -Name microsoft.graph -ListAvailable if($Module.count -eq 0) { Write-Host Microsoft Graph PowerShell...

Weiterlesen