Hi everyone Answering Ravinder Singh, in his post on Linkedin Modern Endpoint Management (MECM | SCCM | Intune | AzureVD | Security | MacOS | iOS ) Group I have used the following PowerShell Script to list all apps installed with their DisplayName, UninstallString, and other properties. Feel free to tweak the script to use … Continue reading Use PowerShell to find application uninstall keys
Month: March 2023
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
Intune Stale Devices – part 1
Have you ever asked yourself why you can find duplicated serial numbers in Intune ( Microsoft Intune Admin Center \ Devices \ Windows )? The behavior it's that you'll find multiple entries of the same Serial Number associated with different Device Names where its Azure AD Device ID is "null" The device will show as … Continue reading Intune Stale Devices – part 1
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