@Ross Welton Thanks for reaching out. I dont have a Zscaler setup , so not sure how exactly it shows up in the RegistryKey table.
I just did a quick test with your registryKey parameter and Kusto query you used.
For example, if following is the entry in my ATP :
I was able to get the particular RegistryKey with following :
DeviceRegistryEvents
| where RegistryKey contains "AArsvc_"
And obviously the other parts like timestamp and actionType should be added to narrow down the search result, my lab environment does not have much data.
What I want you to try is this part | where RegistryKey contains "AArsvc_"
So you can try something like
DeviceRegistryEvents
| where Timestamp > ago(15d)
| where ActionType == "RegistryValueSet"
| where RegistryValueName == "ZWS_State"
| where RegistryKey contains "SOFTWAREZscalerApp"
| project Timestamp, DeviceName, RegistryKey
| top 100 by Timestamp
Let me know if it helps, If it does not, share a screenshot of the entry you are expecting to find from KQL query and we can build something for you.
-----------------------------------------------------------------------------------------------------------------
If the suggested response helped you resolve your issue, please do not forget to accept the response as Answer and "Up-Vote" for the answer that helped you for benefit of the community.