the following code works
let names = dynamic(['Windows Installer', 'Software Protection']);
ConfigurationChange
| where Computer like "SRV"
| where SvcPreviousState == "Running"
| where SvcState == "Stopped"
// | where SvcDisplayName in (names)
| order by TimeGenerated
as commented out I would like to only check for a list of SvcDisplayName's.
According to the documentation this should work but does complain
: Failed to resolve table or column or scalar expression named 'names'
How would I correctly use in with a list for SvcDisplayName ?


