I have created WIX setup for my application. I am bootstapping the prerequisites using WIX bootstapper. One of the prerequiste is to install SQL CE on the machine. The package install all the prerequisites for Window 7 OS, but for windows 10 OS it do not install the prerequisites.
<MsiPackage SourceFile=".\SSCERuntime_x86-ENU.msi"
Name="SQL Server Compact Edition 32bit"
Compressed="yes"
Vital="no"
Visible="yes"
Permanent="yes"
InstallCondition="VersionNT64"/>
<MsiPackage SourceFile =".\SSCERuntime_x64-ENU.msi"
Name="SQL Server Compact Edition 64bit"
Compressed ="yes"
Vital ="no"
ForcePerMachine="yes"
Permanent ="yes"
Visible="yes"
InstallCondition="VersionNT64"/>
I am not getting why it is not installing prerequisites in Win 10.