You should be able to redirect the output to file and the read it with VBA. I do this with several command line tools.
See:
Using command redirection operators
1) Generate the output file:
Example:
Code:
Dim OutPutFile as String
OutputFile = "C:\Test\info.txt"
x = Shell("C:\test\test --info c:\test\testfile.jpg > " & OutputFile, 0)
2) Read the file stored in the variable OutputFile
There are several ways to read in the contents of the Text file.
I like to use:
Code:
Line Input # Statement
You can find examples in the Help File for Access.