Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: a certificate chain processed,but terminated in a root error .Net Framework 4.7

I want to extract the .net 4.7 framework prerequisites with my main msı.

But when ı try to install .net installation give an error.

After ı try to install .net framework only.

.net framework installation gives an error

.net framework 4.7 a certificate chain processed but terminated in a root.

How to certificate it with Wix?

  <ExePackage
         InstallCommand="/q /norestart /ChainingPackage &quot;[WixBundleName]&quot; /log &quot;[NetFx47FullLog].html&quot;"
          RepairCommand="/q /norestart /repair /ChainingPackage &quot;[WixBundleName]&quot; /log &quot;[NetFx47FullLog].html&quot;"
          UninstallCommand="/uninstall /q /norestart /ChainingPackage &quot;[WixBundleName]&quot; /log &quot;[NetFx47FullLog].html&quot;"
          PerMachine="yes"
          DetectCondition="!(wix.NetFx47WebDetectCondition)"

          InstallCondition="NetFrameWorkCheckbox = 1"
          Id="NetFx47Web"
          Vital="yes"
          Permanent="yes"
          Protocol="netfx4"
          DownloadUrl="$(var.NetFx47WebLink)"
          LogPathVariable="NetFx47FullLog"
          Compressed="yes"
     Name="!(wix.NetFx47WebPackageDirectory)NDP47-KB3186500-Web.exe"
    SourceFile=".\prerequisites\NNDP47-KB3186497-x86-x64-AllOS-ENU.exe"


         >
like image 995
ORHAN TOPDAĞ Avatar asked Oct 01 '18 07:10

ORHAN TOPDAĞ


1 Answers

I also met the same issue when installing .NET framework 4.7 on the PC with Win 7 sp1 system.

The solution with detailed steps is below can be seen in:

https://stackoverflow.com/a/60812129/6075331

Step2

Then the issue will hopefully be resolved.

like image 169
Bravo Yeung Avatar answered Nov 03 '22 08:11

Bravo Yeung