Loadlib is a small application that allows you to load one or more dlls into memory from the command line. The first dll in the list is the primary dll, subsequent ones are secondary.

The application also supports the /break option which will trigger a debugger breakpoint before the primary dll is loaded.

Usage: loadlib primarydll [secondarydll] [thirddll etc..] /break

Secondary dlls are useful if you want to include an api logger dll (such as the one that comes with SysAnalyzer) or if the primary dll needs other libs in memory in order to run.

If any dll is not found during command line parsing, the application will warn you and exit.

Small utility, but I actually end up using it allot.