http://bugs.winehq.org/show_bug.cgi?id=18811
--- Comment #14 from Hans Leidekker hans@meelstraat.net 2009-06-09 02:56:20 --- 002d:warn:msidb:write_stream_data open stream failed r = 80030005 002d:warn:msidb:STREAMS_set_row failed to write stream data: 1627
80030005 is STG_E_ACCESSDENIED
Hib's patches added support for binary streams which the sp1 installer is trying to add via a transform. This fails because we open the package storage (actually a copy of it) read-only.
A naive patch to open the storage read/write makes a bunch of test fail because of sharing violations, so the proper fix is probably to read all of it into memory, like a comment in the source says.