I would like to silently save out a report from msinfo32.exe using ruby. How can I do so? I tried the following
system "msinfo32.exe /\report c:/\/\temp/\/\fromruby.txt"
exec 'msinfo32.exe /\report c:/\/\temp/\/\fromruby.txt'
IO.popen("msinfo32.exe /\report c:/\/\temp/\/\fromruby.txt")
and all of these open the application instead of silently creating the report.
Thanks in advance.