我创建了一个 .NET dll 以在 Installscript 中使用。它基本上安装证书,删除证书并检查证书是否已经存在。这是我的 Exists 方法:
[ComVisible(true)]
public bool Exists(string thumbPrint)
{
try
{
...
//Check if the certificate exists on the store.
var certCollection = store.Certificates.Find(X509FindType.FindByThumbprint, thumbPrint, false);
return (certCollection.Count > 0);
}
catch (Exception exception)
{
...
}
}
这是安装脚本代码
szDLLPath = SUPPORTDIR ^ "X509Framework.dll";
szClassName = "X509Framework.X509StoreProcessor";
DotNetUnloadAppDomain("X509FrameworkDomain");
try
set oX509Store = DotNetCoCreateObject(szDLLPath, szClassName, "X509FrameworkDomain");
catch
SprintfBox (INFORMATION, "Error","Error occured: %i\n\n%s\n\n%s", Err.Number, Err.Description, Err.LastDllError);
abort;
endcatch;
try
nReturn = oX509Store.Exists(FinArchCodeSigningSha);
catch
SprintfBox (INFORMATION, "Error","Error occured: %i\n\n%s\n\n%s", Err.Number, Err.Description, Err.LastDllError);
abort;
endcatch;
在这个例子nReturn
中,总是-1
当我在 Installscript 中调试它时,证书是否存在。(当然,从 .NET 程序中它可以正常工作)然后我尝试使用 aint
作为返回值,这很有效。所以有一个解决方法。
但我想知道是否有人知道为什么我不能将bool
其用作 Installscript 中使用的 .NET dll 的返回值。