Hello,


An example function in vbscript :



Function ExtractBinary(BinaryName, OutputFile)

    Const msiReadStreamAnsi = 2

    Dim oDatabase

    Set oDatabase = Session.Database

    Dim View

    Set View = oDatabase.OpenView("SELECT * FROM Binary WHERE Name =
'" & BinaryName & "'")

    View.Execute

    Dim Record

    Set Record = View.Fetch

    Dim BinaryData

    BinaryData = Record.ReadStream(2, Record.DataSize(2),
msiReadStreamAnsi)

    Dim FSO

    Set FSO = CreateObject("Scripting.FileSystemObject")

    Dim Stream

    Set Stream = FSO.CreateTextFile(OutputFile, True)

    Stream.Write BinaryData

    Stream.Close

    Set FSO = Nothing

End Function



It might help.



--

Sincerely,

Gabriel









Le Lun 02 Septembre 2013, à 14:16, ak m a écrit :

Dear All,



Code to Extract Binary file from MSI to Temp folder using C#



Anyone Plz help me on this?





Thanks in Advance...





Anil

-----------------------------------------------------------------------
-------

Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!

Discover the easy way to master current and previous Microsoft

technologies

and advance your career. Get an incredible 1,500+ hours of step-by-step

tutorial videos with LearnDevNow. Subscribe today and save!

[1]http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg
.clktrk

_______________________________________________

WiX-users mailing list

[2]WiX-users@lists.sourceforge.net

[3]https://lists.sourceforge.net/lists/listinfo/wix-users



--
Sincèrement,
Gabriel

"I know no way of judging the future but by the past."
Patrick Henry
"You can never plan the future by the past."
Edmund Burke

References

1. http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk
2. mailto:WiX-users@lists.sourceforge.net
3. https://lists.sourceforge.net/lists/listinfo/wix-users
------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58040911&iu=/4140/ostg.clktrk
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to