extract cab file and execute the exe file(inside the cab file) automatically - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T19:22:32Zhttp://stackoverflow.com/feeds/question/1062550http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1062550/extract-cab-file-and-execute-the-exe-fileinside-the-cab-file-automatically0extract cab file and execute the exe file(inside the cab file) automaticallyjunmats2009-06-30T08:54:50Z2009-07-01T19:14:46Z
<p>Hi! I have a cab file(w/ an executable file inside) embedded on my webpage. When the user access the page the cab file will be automatically extracted and the executable file inside should be executed as well. Is this possible? My hunch is that this will be configured in my inf file but I don't know how. I would appreciate your help in this.</p>
http://stackoverflow.com/questions/1062550/extract-cab-file-and-execute-the-exe-fileinside-the-cab-file-automatically/1063259#10632591Answer by Shay Erlichmen for extract cab file and execute the exe file(inside the cab file) automaticallyShay Erlichmen2009-06-30T11:56:01Z2009-06-30T11:56:01Z<p>You need to use the hook&run values, like in <a href="http://msdn.microsoft.com/en-us/library/aa751974%28VS.85%29.aspx#EXAMPLE" rel="nofollow">this sample</a></p>
<blockquote>
<pre><code>[version]
signature="$CHICAGO$"
AdvancedINF=2.0
[Add.Code]
time.ocx=time.ocx
msvcrt.dll=msvcrt.dll
mfc42.dll=mfc42.dll
olepro32.dll=olepro32.dll
[time.ocx]
file-win32-x86=thiscab
clsid={DCF0768D-BA7A-101A-B57A-0000C0C3ED5F}
FileVersion=1,0,0,0
RegisterServer=yes
[msvcrt.dll]
FileVersion=4,20,0,6164
hook=mfc42installer
[mfc42.dll]
FileVersion=4,2,0,6256
hook=mfc42installer
[olepro32.dll]
FileVersion=4,2,0,6068
hook=mfc42installer
[mfc42installer]
file-win32-x86=http://activex.microsoft.com/controls/vc/mfc42.cab
run=%EXTRACT_DIR%\mfc42.exe
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1062550/extract-cab-file-and-execute-the-exe-fileinside-the-cab-file-automatically/1070839#10708390Answer by unknown (yahoo) for extract cab file and execute the exe file(inside the cab file) automaticallyunknown (yahoo)2009-07-01T19:14:46Z2009-07-01T19:14:46Z<p>Is there a way to install this .CAB file from the command line?
I've tried every possible rundll32.exe command line I could find and still can't seem to get it to work the way it works from the browser.</p>