简体   繁体   中英

How to output dependency walker to the console?

Fairly straightforward question, but I can't seem to find if this is an option in their command line help. Is there anyway to output the contents of the dependency walker directly to the console?

Yes, I'm aware that you can specify it to output to a file and then I can parse the file, however that takes a bunch of time that I would rather avoid.

I'm not necessarily worried about how "ugly" it looks in the console. I can programmatically search what I want from the output pretty quickly, just need to know if this is possible.

Thanks in advance if you can offer any advice!

Dependencies is a modern replacement for dependency walker. It contains both a GUI tool and a console app (dependencies.exe), which dumps as you require. It supports the following options:

Dependencies.exe : command line tool for dumping dependencies and various utilities.
Usage : Dependencies.exe [OPTIONS] FILE

Options :
  -h -help : display this help
  -json : activate json output.
  -apisets : dump the system's ApiSet schema (api set dll -> host dll)
  -knowndll : dump all the system's known dlls (x86 and x64)
  -manifest : dump FILE embedded manifest, if it exists.
  -sxsentries : dump all of FILE's sxs dependencies.
  -imports : dump FILE imports
  -exports : dump  FILE exports
  -modules : dump FILE resolved modules
  -chain : dump FILE whole dependency chain

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM