开发者

How can I stop the installation of prerequisites to pop every time in advanced installer?

开发者 https://www.devze.com 2023-03-30 02:18 出处:网络
I am creating the deployment project (.MSI) for my .NET Windows project (Visual Studio 2010) using the advanced installer 8.x by adding some driver and 3rd party SDKs. I开发者_JAVA百科 added them as p

I am creating the deployment project (.MSI) for my .NET Windows project (Visual Studio 2010) using the advanced installer 8.x by adding some driver and 3rd party SDKs. I开发者_JAVA百科 added them as prerequisites by choosing the product keys as conditions, but when I run the project it’s popping the prerequisites even after they get installed. Its status is not changing to installed and popping up every time.

How can I fix it?


Prerequisites use detection criteria to determine if they are installed or not. So most likely your prerequisite install conditions are not correct.

Usually a prerequisite is detected by searching for a file or registry entry installed by it. To see what files and registry entries are installed by a package you can use Process Monitor or a repackager tool.

0

精彩评论

暂无评论...
验证码 换一张
取 消