Difference between revisions of "Advanced Registry Tracer"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (Reverted edit of 203.162.27.92, changed back to last version by WPKGSysop)
m
Line 4: Line 4:
 
shown below, where the software is being installed to "C:\Program Files\Utilities\Art".
 
shown below, where the software is being installed to "C:\Program Files\Utilities\Art".
  
<pre>
+
<source lang="xml">
&lt;package
+
<package
 
   id="ART"
 
   id="ART"
 
   name="Advanced Registry Tracer"
 
   name="Advanced Registry Tracer"
 
   revision="1"
 
   revision="1"
 
   reboot="false"
 
   reboot="false"
   priority="1"&gt;
+
   priority="1">
  
   &lt;check type="uninstall" condition="exists" path="Advanced Registry Tracer" /&gt;
+
   <check type="uninstall" condition="exists" path="Advanced Registry Tracer" />
   &lt;install cmd='%SOFTWARE%\advanced_registry_tracer\setup.exe /S /D=%PROGRAMFILES%\Utilities\ART'&gt;
+
   <install cmd='%SOFTWARE%\advanced_registry_tracer\setup.exe /S /D=%PROGRAMFILES%\Utilities\ART' />   
    &lt;exit code="0" /&gt;
+
   <remove cmd='"%PROGRAMFILES%\Utilities\ART\uninstall.exe" /S' />
   &lt;/install&gt;
+
</package>
  &lt;remove cmd='"%PROGRAMFILES%\Utilities\ART\uninstall.exe" /S' /&gt;
+
</source>
&lt;/package&gt;
+
</pre>
+
  
 
Reference:
 
Reference:

Revision as of 13:10, 4 February 2008

Advanced Registry Tracer (ART)from Elcomsoft is a utility designed for analyzing changes made to the Windows Registry. It takes snapshots of the registry and stores them in a database. Snapshots can be compared against one another. A free trial version of the program can be downloaded from the developer.

The setup.exe file is a Nullsoft Scriptable Install System (NSIS) script, so can be run in silent mode with the "/S" option. The installation directory can be specified with the "/D=dir" option as shown below, where the software is being installed to "C:\Program Files\Utilities\Art".

<package
  id="ART"
  name="Advanced Registry Tracer"
  revision="1"
  reboot="false"
  priority="1">

  <check type="uninstall" condition="exists" path="Advanced Registry Tracer" />
  <install cmd='%SOFTWARE%\advanced_registry_tracer\setup.exe /S /D=%PROGRAMFILES%\Utilities\ART' />    
  <remove cmd='"%PROGRAMFILES%\Utilities\ART\uninstall.exe" /S' />
</package>

Reference:

Installation of Advanced Registry Tracer (ART) with wpkg