machine-snapshot.rex

Pipelines v2.1

 

.....|...+....1....+....2....+....3....+....4....+....5....+....6....+....7....+....8....+....9....+....10...

Home

     **** Top of file ****
   1
   2 /* The following pipeline searches the entire machine for files. For each one found it writes a
   3    record to the output file: snapshot.txt. The output file contains a snapshot of the files
   4    on all drives connected to the machine.
   5
   6    You might collate the output of separate runs of this pipeline to determine which files on 
   7    your machine have changed in any given time period. The ???pipelines' snapshot1.txt, snapshot2.txt
   8    and ‘collate-machine-snapshots.rex' which you will find in the Examples folder, together, perform this
   9    very task. */
  10
  11 Address Rxpipe
  12
  13 'pipe (priority 1 endchar ?)',
  14      'filelist drv=* subdir',                                /* Search entire machine. */
  15         /* Write to capture file. */,
  16      '| > &sysdrive:\Documents and Settings\&username\My Documents\snapshot1.txt',
  17      '?',
  18      'literal /Wait! ..capturing machine to: snapshot.txt/', /* Console info message. */
  19      '| cons'                                                /* Write it to the console. */
  20
  21 Say 'Hit Enter to close..'
  22 Parse Pull
  23
  24 Exit 0
     **** End of file ****
 
We need to add a progress stage in here
 
We need to rewrite the introduction text above!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!