Forums on Intune, SCCM, and Windows 11

Welcome to the forums. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your topics and posts, as well as connect with other members through your own private inbox!

SOLVED ConfigMgr bgbisapi.msi could not be installed

  • Thread starter Thread starter trekkeriii
  • Start date Start date
  • Replies Replies 4
  • Views Views 22K
Status
Not open for further replies.

trekkeriii

Member
Messages
9
Reaction score
5
Points
3
SMS_Notification_Server, SMS_TEM, and SMS_REST_ProviderSMS are erroring out while attempting to install. I did try using the info from this article:
http://prajwaldesai.com/fatal-msi-error-bgbisapi-msi-could-not-be-installed/

But did not work for me. Any ideas?

Here's the errors from the BgbSetup.log:
Code:
<07/03/18 16:40:48> CTool::RegisterComPlusService: Failed to unregister C:\Program Files\Microsoft Configuration Manager\bin\x64\microsoft.configurationmanager.bgbserverchannel.dll with .Net Fx 4.0
<07/03/18 16:40:48> DeleteBgbServerApplication: failed to find the application
<07/03/18 16:40:48> CTool::RegisterComPlusService: run command line: "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\RegSvcs.exe" /extlb /tlb:"C:\Program Files\SMS_CCM\microsoft.configurationmanager.bgbserverchannel.tlb" "C:\Program Files\Microsoft Configuration Manager\bin\x64\microsoft.configurationmanager.bgbserverchannel.dll"
<07/03/18 16:40:48> CTool::RegisterComPlusService: Failed to register C:\Program Files\Microsoft Configuration Manager\bin\x64\microsoft.configurationmanager.bgbserverchannel.dll with .Net Fx 4.0
<07/03/18 16:40:48> Cannot register BGB server channel DLL C:\Program Files\Microsoft Configuration Manager\bin\x64\microsoft.configurationmanager.bgbserverchannel.dll. Installation cannot continue.
<07/03/18 16:40:48> Fatal MSI Error - bgbisapi.msi could not be installed.
 
The solution that i mentioned in my post had solved my issue. Have you followed all the steps and still didn't fix this issue ?.
 
Yes, only 5 steps. Edited both files added the

regsrvcs.exe.config:
XML:
<?xml version ="1.0"?>
<configuration>
    <startup useLegacyV2RuntimeActivationPolicy="true">
        <requiredRuntime safemode="true" imageVersion="v4.0.30319" version="v4.0.30319"/>
    </startup>
    <runtime>
        <loadFromRemoteSources enabled="true"/>
    </runtime>
</configuration>

installutil.exe.config:
XML:
<?xml version ="1.0"?>
<configuration>
    <startup useLegacyV2RuntimeActivationPolicy="true">
        <supportedRuntime version="v4.0.30319"/>
    </startup>
    <runtime>
        <loadFromRemoteSources enabled="true"/>
    </runtime>
</configuration>

Then I restarted the "Distributed Transaction Coordinator" and "SMS_SITE_COMPONENT_MANAGER" services.
 
Last edited:
Status
Not open for further replies.

Forum statistics

Threads
7,151
Messages
27,921
Members
18,222
Latest member
eperkun

Trending content

Back
Top