IIS 中的 WIX 和证书
我正在尝试设置我的安装,以便使用 WIX 配置我的站点及其证书。
我可以在 IIS 中查看证书并有权访问 .cer 文件。 这就是我对证书的了解,所以请简化任何答案。 (即我不知道我的“BinaryKey”是什么)。
该证书已安装在计算机上。 理想情况下,我希望在 wix 中有一种方法来配置要使用的已安装证书。 如果有人知道如何做到这一点,请在这里发布!
如果无法做到这一点,那么我希望有一个关于如何安装(也许卸载)证书的好例子。
感谢您的任何和所有答案。
瓦卡诺
I am trying to setup my install to have my site configured with its certificate using WIX.
I can view the certificate in IIS and have access to the .cer file. That is about all I know about certificates, so please dumb down any answers. (ie I have no idea what my "BinaryKey" is).
The certificate is already installed on the machine. Ideally I would like to just have a way in wix to configure which installed certificate to use. If anyone knows how to do that please post it here!
If that can't be done, then I would love a good example of how to install (and maybe uninstall) a certificate.
Thanks for any and all answers.
Vaccano
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,WIX 证书领域没有一个大人物。
以下是我所做的最终工作:
在我的网站下:
在项目下:
$(var.CertificatePath)
是指向我的 .cer 文件的设置。Okaaay, so no one big on the WIX Certificates scene.
Here is what I did that ended up working:
Under my website:
Under Project:
$(var.CertificatePath)
is a setup to point to my .cer file.