Monitor Intune Device enrollment using Teams Channel.

Hi again In order to monitor Device Hash Import (into Windows Autopilot devices) using Microsoft Teams Channel we'd need a Microsoft Teams Webhook Notification Requirements Microsoft Team on Teams A Channel under Contoso Team named ā€œIntune Enrollmentā€ A webhook connector named Autopilot ( URL ) Knowledge of HTML to customize the table sent to the … Continue reading Monitor Intune Device enrollment using Teams Channel.

Intune Stale Devices – part 2

Hi again! If you looked on my previous post you probably asked yourself how would be able to retrieve the same information using Powershell. There you go. Install-Module Microsoft.Graph -Scope AllUsers Connect-MSGraph $Devices = Get-IntuneManagedDevice -Filter "contains(operatingsystem, 'Windows')" | Get-MSGraphAllPages Now you have the full list to work with $Devices | Where-Object {$_azureADDeviceId -eq "00000000-0000-0000-0000-000000000000"} … Continue reading Intune Stale Devices – part 2

Automated filter rule update in Intune

Automated filter population in Intune If you have read the article ā€œPhased deploymentā€ you should have asked yourself what if I need to automate this filter update process. Unfortunately, there’s nothing to automate in the Microsoft Intune Admin Center portal. However, if you’re interested in leveraging PowerShell AzureAD and MsGraph module you can accomplish it … Continue reading Automated filter rule update in Intune

Office 365 – Migration & Setup tips #1

Hi thereThis article it's to remind you to pay attention in a few items that would help you through each new Office 365 project or migration.In addition to an Active Directory health check, IdFix and new UPN (userprincipalname) suffix that you need to cover on each single project please have also look at the following:have … Continue reading Office 365 – Migration & Setup tips #1

Create Distribution Group in ADDS from CSV file.

Hi thereThis article it's to show how to create DG (Distribution Groups) from CSV file into ADDS.We got an export from Lotus Notes Distribution Group (same client) where we have:Group NameMembers: with CN and email (as contacts) on the same columnĀ Challengescreate the Distribution Groups from CSV file (as is, with blank spaces on name)import members … Continue reading Create Distribution Group in ADDS from CSV file.