You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compare-IntuneBackupDirectories uses LIKE operator for searching the difference files, but when policy/file contains [xxx] in its name, search fails, because LIKE treats this as sort of wildcard instead of literally searching for the string as it is.
Solution is to use MATCH instead (-match [regex]::Escape($referenceJSONFileParentPath))
The text was updated successfully, but these errors were encountered:
Compare-IntuneBackupDirectories uses LIKE operator for searching the difference files, but when policy/file contains [xxx] in its name, search fails, because LIKE treats this as sort of wildcard instead of literally searching for the string as it is.
Solution is to use MATCH instead (-match [regex]::Escape($referenceJSONFileParentPath))
The text was updated successfully, but these errors were encountered: