Skip to content

Latest commit

 

History

History

Troubleshooting

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Intune troubleshooting tools and tips

Intune Management Extension log analyzer and LogViewerUI

Check my Get-IntuneManagementExtensionDiagnostics tool.

Firewall

Check Firewall rules configured from Intune

Get-NetFirewallRule -PolicyStore ActiveStore | Where-Object { $_.PolicyStoreSource -eq 'Mdm' } | Select-Object -Property DisplayName,Action,Direction

Firewall configurations and rules registry path is:
Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\Mdm

You really should look my Get-IntuneManagementExtensionDiagnostics tool for Intune LogViewerUI.

  • Show Intune Management Extension logs in cmtrace style window using Out-GridView cmdlet
  • Shows list of IME log files to show in Out-GridView if log file is not specified as command line parameter

Either give log file as parameter or select file from Out-GridView
01-Show-IntuneIMELogsInOutGridView.png

Out-Gridview looks like cmtrace.exe. Filter enables quick search by typing any text
02-Show-IntuneIMELogsInOutGridView.png