# File lib/ohai/mixin/command.rb, line 105 def run_command_windows(command, timeout) shellout_opts = {} shellout_opts[:timeout] = timeout if timeout m = Mixlib::ShellOut.new(command, shellout_opts) m.run_command [m.status, m.stdout, m.stderr] end