So I added a simple .ps1 script in Intune under Devices, Scripts. It is assigned to a Device-group.
After deploying I can see that the status is showing as Succeeded.
But the script is never executed on the clients. I read that it should be placed in C:\Program Files (x86)\Microsoft Intune Management Extension\Policies\Scripts, but it isn't appearing there.
I tested this script on the client itself and it is working properly
the script itself is as follows:
New-Item -Path "HKCU:\Software\Citrix\ICA Client\Keyboard Mapping" -Name Tips –Force
New-ItemProperty -Path Registry::"HKEY_CURRENT_USER\Software\Citrix\ICA Client\Keyboard Mapping\Tips" -Name "In full screen mode" -Value 20070313 -PropertyType DWord -Force
Does anyone know where to start troubleshooting from here?