Guest User

Untitled

a guest
May 26th, 2017
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. Please keep just a simple snippet in the README (or in the inline comments), to understand when are the conditions being OR-ed & when are the conditions being AND-ed.
  2.  
  3. For example:
  4.  
  5. 1) This is an OR, between the 3 conditions below (as they are all the "Signature" tag)
  6.  
  7. <DriverLoad onmatch="exclude">
  8. <Signature condition="contains">microsoft</Signature>
  9. <Signature condition="contains">windows</Signature>
  10. <Signature condition="begin with">Intel </Signature>
  11. </DriverLoad>
  12.  
  13.  
  14. 2) But, is this an AND ? In other words is it...
  15.  
  16. (Image is Spotify.exe OR Image is OneDrive.exe)
  17. AND
  18. (DestinationHostname ends with microsoft.com)
  19.  
  20. <NetworkConnect onmatch="exclude">
  21. <Image condition="image">Spotify.exe</Image>
  22. <Image condition="image">OneDrive.exe</Image>
  23. <DestinationHostname condition="end with">microsoft.com</DestinationHostname>
  24. </NetworkConnect>
Advertisement
Add Comment
Please, Sign In to add comment