# File lib/chef/shell_out/windows.rb, line 72
      def read_stdout(stdout)
        return nil if @finished_stdout
        if chunk = stdout.sysread(8096)
          @stdout << chunk
        else
          @finished_stdout = true
        end
      rescue EOFError
        @finished_stdout = true
      rescue Errno::EAGAIN
      end