# File lib/chef/shell_out/windows.rb, line 84
      def read_stderr(stderr)
        return nil if @finished_stderr
        if chunk = stderr.sysread(8096)
          @stderr << chunk
        else
          @finished_stderr = true
        end
      rescue EOFError
        @finished_stderr = true
      rescue Errno::EAGAIN
      end