我根本不明白这一点。
当我尝试以只读模式打开MSI文件时,我得到一个例外:
System.Runtime.InteropServices.COMException未被用户代码处理 HelpLink = Msi.chm#9006 HResult = -2147467259 Message = OpenDatabase,DatabasePath,OpenMode Source = Msi API错误 ErrorCode = -2147467259 StackTrace:at System.RuntimeType.ForwardCallToInvokeMember(String memberName, BindingFlags标志,Object target,Int32 [] aWrapperTypes,MessageData& msgData)在WindowsInstaller.Installer.OpenDatabase(String DatabasePath,Object OpenMode)基于Web的发布 manager.AjaxFileHandler.updateMSIProperty(String msiFile,String msiProperty,String value)在C:\ Users \ obfuscated \ documents \ visual中 studio 2010 \ Projects \ web based release manager \ AjaxFileHandler.ashx.cs:基于Web的第28行发布 manager.AjaxFileHandler.ProcessRequest(HttpContext context)中 C:\ Users \ obfuscated \ documents \ visual studio 2010 \ Projects \ web based 发布经理\ AjaxFileHandler.ashx.cs:第143行 System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() 在System.Web.HttpApplication.ExecuteStep(IExecutionStep步骤, 布尔和放大器; completedSynchronously)
我可以使用下面的工作代码从msi读取属性,所以我知道文件路径是正确的:
public static string GetMSIProperty(string msiFile, string msiProperty)
{
string retVal = string.Empty;
Type classType = Type.GetTypeFromProgID("WindowsInstaller.Installer");
Object installerObj = Activator.CreateInstance(classType);
WindowsInstaller.Installer installer = installerObj as WindowsInstaller.Installer;
Database database = installer.OpenDatabase(msiFile, 0);
string sql = String.Format("SELECT `Value` FROM `Property` WHERE `Property`='{0}'", msiProperty);
View view = database.OpenView(sql);
WindowsInstaller.Record record = null;
view.Execute(record);
record = view.Fetch();
if (record != null)
{
retVal = record.get_StringData(1).ToString();
}
else
retVal = "Property Not Found";
Marshal.FinalReleaseComObject(installer);
return retVal;
}
导致问题的代码:
public void updateMSIProperty(string msiFile, string msiProperty, string value)
{
Type classType = Type.GetTypeFromProgID("WindowsInstaller.Installer");
Object installerObj = Activator.CreateInstance(classType);
WindowsInstaller.Installer installer = installerObj as WindowsInstaller.Installer;
var mode = MsiOpenDatabaseMode.msiOpenDatabaseModeDirect;
Database database = installer.OpenDatabase(msiFile, mode); //throws the exception!
string sql = String.Format("UPDATE `Property` SET `Value`='{0}' WHERE `Property`='{1}'", value, msiProperty);
View view = database.OpenView(sql);
view.Execute();
return;
}
这两个函数是从同一段代码运行的:
if(GetMSIProperty(path, "UpgradeCode") != theProductsUpgradeCode)
updateMSIProperty(path, "UpgradeCode",theProductsUpgradeCode);
我工作的公司正在向msi发布软件。 没问题,除了公司由很多擅长他们工作的工程师组成,其中一部分是用于计算的编程工具。 他们不是计算机科学家,他们中的大多数人都不知道OS2和Office 365之间的区别......
到目前为止,大多数部门已经创建了一些可以创建msi并安装产品的发布系统,但是他们并没有真正掌握所有这些产品/包属性所做的事情。
我以为我会帮助他们,并且在我们的webfrontend中,他们通过更换UpgradeCodes(guid)来发布msi是正确的,并插入他们通常忘记的一些其他数据,例如制造商..证书等。
但我无法获取更新MSI的代码。
更新
Marshal.FinalReleaseComObject(installer)
但未成功答案 0 :(得分:2)
除了克里斯的建议之外,我还远离整个COM类型的激活,因为它完全没必要。有一个非常好的Win32 API可以通过p / invoke使用。这是我曾经使用过的最小例子:
public class MsiInvoke
{
[DllImport("msi", CharSet = CharSet.Auto)]
public static extern int MsiOpenDatabase(string filename, int persist, out IntPtr dbhandle);
public const int MSIDBOPEN_DIRECT = 2;
[DllImport("msi", CharSet = CharSet.Auto)]
public static extern int MsiCloseDatabase(string filename, int persist, out IntPtr dbhandle);
[DllImport("msi", CharSet = CharSet.Auto)]
public static extern int MsiDatabaseCommit(IntPtr hDb);
[DllImport("msi", CharSet = CharSet.Auto)]
public static extern int MsiViewClose(IntPtr hView);
[DllImport("msi", CharSet = CharSet.Auto)]
public static extern int MsiDatabaseOpenView(IntPtr hDb, string query, out IntPtr hView);
[DllImport("msi", CharSet = CharSet.Auto)]
public static extern int MsiViewExecute (IntPtr hView, IntPtr hRec);
}
class Program
{
static void Main(string[] args)
{
IntPtr hDb = IntPtr.Zero;
int res = MsiInvoke.MsiOpenDatabase("setup.msi",MsiInvoke.MSIDBOPEN_DIRECT, out hDb);
string qinsert = "UPDATE `Control` set `Control`.`Text`= 'Something' WHERE `Dialog_`='License_Dialog' AND `Control`='License'";
IntPtr hView=IntPtr.Zero;
res = MsiInvoke.MsiDatabaseOpenView(hDb, qinsert, out hView);
res = MsiInvoke.MsiViewExecute(hView, IntPtr.Zero);
res = MsiInvoke.MsiViewClose(hView);
res = MsiInvoke.MsiDatabaseCommit(hDb);
}
}
请注意,这个惰性程序应该在每个句柄上包含对MsiCloseHandle()的调用,但不会因为无论如何都会发生这种情况。
答案 1 :(得分:1)
Windows Installer XML(WiX)有一个名为Deployment Tools Foundation(DTF)的功能,它有一个非常好的MSI互操作程序集,名为Microsoft.Deployment.WindowsInstaller.dll。这个程序集有一个名为Database的类,它有一个构造函数,如:
public Database(
string filePath,
DatabaseOpenMode mode
)
一个简单的例子是:
using Microsoft.Deployment.WindowsInstaller;
using(Database database = new Database(@"C:\test.msi", DatabaseOpenMode.Direct))
{
...
}
还有一个实现LINQ到MSI模式的QDatabase类,可以很容易地将Properties表视为实体并相应地进行查询/更新。
using(var database = new QDatabase(@"C:\test.msi", DatabaseOpenMode.Direct))
// or in custom action
using(var qdatabase = session.Database.AsQueryable() )
我强烈建议您这样做,以便您可以专注于您尝试编写的代码,而不是如何与MSI互操作。