My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads

A small Software written in C# that shows all DLLs used by an EXE.

DOWNLOAD

It works based on a xml config file. This file has several values as shown bellow:

<?xml version="1.0" encoding="iso-8859-1" ?>
<tracewinresources>
  <config resultpath="C:\Windows\Temp" interval="60" verbose="true" udpserver="" udpport="9050" />
  <inspect path="C:\Windows\system\" />
  <inspect path="C:\Program Files\" />
  <inspect path="C:\Python27" />
</tracewinresources>
  • Inspect Path: The folder that will be read (recursively) to find all .EXE files;
  • Result Path: The folder where the report file will be stored (.CSV);
  • Interval: The time frame of trace loop (in seconds);
  • Verbose: (true|false) enables or disables the debug log;
  • UdpServer: An IP address of server to where the report will be sent (OPTIONAL)
  • UdpPort: The UDP server port (OPTIONAL)
Powered by Google Project Hosting