Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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.
- For example:
- 1) This is an OR, between the 3 conditions below (as they are all the "Signature" tag)
- <DriverLoad onmatch="exclude">
- <Signature condition="contains">microsoft</Signature>
- <Signature condition="contains">windows</Signature>
- <Signature condition="begin with">Intel </Signature>
- </DriverLoad>
- 2) But, is this an AND ? In other words is it...
- (Image is Spotify.exe OR Image is OneDrive.exe)
- AND
- (DestinationHostname ends with microsoft.com)
- <NetworkConnect onmatch="exclude">
- <Image condition="image">Spotify.exe</Image>
- <Image condition="image">OneDrive.exe</Image>
- <DestinationHostname condition="end with">microsoft.com</DestinationHostname>
- </NetworkConnect>
Advertisement
Add Comment
Please, Sign In to add comment