I know you can change it using cscript.exe on Windows. Is there a Linux program providing cscript-like functionality? Or is there some other way I can change the database in Linux?

link|improve this question

4  
MSI is supposedly the Microsoft Installer, a very Windows-specific beast. What are you even doing with that on Linux? – Henning Makholm Aug 18 '11 at 22:58
@Henning my guess is some sort of web service or site – Rafe Kettler Aug 18 '11 at 23:07
feedback

1 Answer

up vote 2 down vote accepted

CScript is just the script execution engine; it knows nothing about MSI directly. Check out Wine; it implements some/most of msi.dll, so as long as functions like MsiDatabaseOpenView and MsiViewExecute are correctly implemented, you should be able to use it to modify an .msi package.

link|improve this answer
Ugh. Yeah this is probably the way to do it. I think I'm going to end up running a Windows box instead of mucking around in a bunch of C libraries. – Jieren Aug 19 '11 at 20:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.