microsoftgraph/powershell-intune-samples

Validate-NDESConfiguration.ps1: Section "Checking Intune Connector is installed..." does not work anymore

siliiii opened this issue · 0 comments

Microsoft changed the display name of the intune certificate connector. Currently the script checks for the value "Microsoft Intune Connector" in row 1358

$IntuneConnector = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | ? {$_.DisplayName -eq "Microsoft Intune Connector"}

The new display name is "Certificate Connector for Microsoft Intune". Therefore row 1358 should be changed to:

$IntuneConnector = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | ? {$_.DisplayName -eq "Certificate Connector for Microsoft Intune"}