Skip to main content
Version: v0.17.0

Search and Tag Items

This example will run a number of searches and tag the responsive items and their descendants. It works with any existing case.

Setup​

Instructions on how to install and setup Sequence and the Nuix Connector.

SCL​

Download the SCL here: nuix-search-and-tag.scl

To run:

PS > ./sequence.exe run nuix-search-and-tag.scl
################################################################################

- <CasePath> = './ingest-filter'

- <SearchAndTag> = [
(Search: '*.jpg' Tag: 'image')
(Search: '*.doc' Tag: 'document')
(Search: 'red' Tag: 'colour')
]

################################################################################

# Open a nuix case
- NuixOpenCase <CasePath>

# For each item in the SearchAndTag list, run the 'Search' against the case,
# and tag all items and their descendants with 'Tag'
- ForEach <SearchAndTag> (
NuixSearchAndTag
Search: <>['Search']
Tag: <>['Tag']
SearchType: SearchType.ItemsAndDescendants
)

################################################################################