where
search
π Search from a column
//use where
IntuneDevices
| where DeviceName contains "THINK"
//Use search
IntuneDevices
| search DeviceName: "THINK*"π Search from any column at the start
// use where
IntuneDevices
| where * hasprefix "MVP" // At the start
//use search
IntuneDevices
| search * startswith "MVP" // At the startπSearch from any column at the end
πSearch with regax
Last updated