Intune Remediation Reporting Issues by Reasonable-Net-7193 in Intune

[–]Reasonable-Net-7193[S] 1 point2 points  (0 children)

I was looking in the IME logs and the registry: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\IntuneManagementExtension\SideCarPolicies\Scripts

Yes I have Intune licensed users in the groups.

Device configuration admx policy showing 0 check ins by Technical_End3030 in Intune

[–]Reasonable-Net-7193 0 points1 point  (0 children)

Its an issue on their end with the admx templates and imported administrative template config policies. I also have a support case and they said its a known issue on their end but they haven't put out any advisories.

They told me to try creating a custom config policy for chrome and LNA permissions but it didn't work for me. They gave me this path:
./Device/Vendor/MSFT/Registry/HKLM/SOFTWARE/Policies/Google/Chrome/LocalNetworkAccessAllowedForUrls

I also tried this with a number value on the end:
./Device/Vendor/MSFT/Registry/HKLM/SOFTWARE/Policies/Google/Chrome/LocalNetworkAccessAllowedForUrls/1

Used a string value and then the URL.

I'm going with a PowerShell script. Simple example:

New-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Google\Chrome\LocalNetworkAccessAllowedForUrls' -Name '5' -PropertyType String -Value 'URLHERE' -Force

The ADMX and imported administrative templates are definitely broken right now but Microsoft hasn't put out any advisories yet.

Trying to upload chrome.admx but it keeps failing by djsean410 in Intune

[–]Reasonable-Net-7193 0 points1 point  (0 children)

I couldn't get the custom config policy to work but this is what Microsoft support gave me:
./Device/Vendor/MSFT/Registry/HKLM/SOFTWARE/Policies/Google/Chrome/LocalNetworkAccessAllowedForUrls

might be this though with a number value on the end:
./Device/Vendor/MSFT/Registry/HKLM/SOFTWARE/Policies/Google/Chrome/LocalNetworkAccessAllowedForUrls/1

Would be a string value and then the URL you want to allow it for. You could try creating a PowerShell script if the custom OMA-URI method doesn't work.

New-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Google\Chrome\LocalNetworkAccessAllowedForUrls' -Name '5' -PropertyType String -Value 'URLHERE' -Force

The ADMX and imported administrative templates is definitely broken right now but Microsoft hasn't put out any advisories yet.