# File lib/ohai/mixin/command.rb, line 102
      def run_command_windows(command, timeout)
        if timeout
          begin
            systemu(command)
          rescue SystemExit => e
            raise
          rescue Timeout::Error => e
            Ohai::Log.error("#{command} exceeded timeout #{timeout}")
            raise(e)
          end
        else
          systemu(command)
        end
      end