BizTalk Enterprise Single Sign-On Server installation error - installation

I am having some trouble installing BizTalk Server 2010 on my machine. Downloaded the installer from MSDN but run into the issue of:
Showing MessageBox with text: The following platform components failed to install and will need to be manually installed before setup can proceed: Enterprise Single Sign-On Server: Unspecified error Check the log for details. Return Code: 1 === Logging stopped: 09:55:15 17 April 2013 ===
Searching the web hasn't really helped and instead caused a lot of confusion. I have accepted all the defaults when attempting to install but then it complains about needing to install the Enterprise Single Sign-On server manually?
I am using Windows 7.
Anyone else experienced this issue?
Thanks in advance, Onam.

While installing BizTalk 2016, I encountered this error when I installed only the x86 version of Microsoft Visual C++ 2013 and didn't install x64 version on a 64 bit machine.
Once I installed x64 version as well, the error didn't appear and the installation succeeded.
The error/note that appears in the setup/install wizard when the Enterprise SSO feature is selected, is misleading as it only asks to install the x86 version.
However the install guide that lists pre-requisites for the BizTalk, does mention that both x86 and x64 versions of the Microsoft Visual C++ 2010 (or 2013 in case fo BizTalk 2016) Redistributable Package, should be installed.
https://msdn.microsoft.com/en-us/library/jj248697(v=bts.80).aspx
http://www.biztalkgurus.com/blogs/msft-biztalk-integration/biztalk-2013-installation-error-on-windows-server-2012-64-bit/

Related

dotnet.exe won't run because api-ms-win-crt-runtime-l1-1-0.dll is missing

I need to host an ASP.NET Core 2.0 app in IIS on Windows Server 2008 R2 SP1. I'm following the Docs guide on how to Host ASP.NET Core on Windows with IIS.
After installation, I still can't run dotnet.exe. It calls for a DLL named api-ms-win-crt-runtime-l1-1-0.dll.
The program can't start because api-ms-win-crt-runtime-l1-1-0.dll is missing from your computer. Try reinstalling the program to fix this problem.
However, there are lots of instances of this file on the machine, in the following folders:
C:\Program Files\dotnet\shared\Microsoft.NETCore.App\2.0.3
C:\Program Files (x86)\dotnet\shared\Microsoft.NETCore.App\2.0.3
C:\Windows\winsxs\amd64_microsoft-windows-u..rsalcrt-apifwd-win7_31bf3856ad364e35_6.1.7601.18972_none_a9a51144251fb166
C:\Windows\winsxs\amd64_microsoft-windows-u..rsalcrt-apifwd-win7_31bf3856ad364e35_6.1.7601.23175_none_aa31870f3e3ad077
C:\Windows\winsxs\amd64_microsoft-windows-u..rsalcrt-apifwd-win7_31bf3856ad364e35_6.1.7601.23656_none_aa4830af3e29a3af
C:\Windows\winsxs\x86_microsoft-windows-u..rsalcrt-apifwd-win7_31bf3856ad364e35_6.1.7601.18972_none_4d8675c06cc24030
C:\Windows\winsxs\x86_microsoft-windows-u..rsalcrt-apifwd-win7_31bf3856ad364e35_6.1.7601.23175_none_4e12eb8b85dd5f41
C:\Windows\winsxs\x86_microsoft-windows-u..rsalcrt-apifwd-win7_31bf3856ad364e35_6.1.7601.23656_none_4e29952b85cc3279
The instruction says:
Install the .NET Core Windows Server Hosting bundle on the hosting system. [...] If the system doesn't have an Internet connection, obtain and install the Microsoft Visual C++ 2015 Redistributable before installing the .NET Core Windows Server Hosting bundle.
I have installed/repaired both of these packages multiple times but get the same error.
It's probably not that the DLL is missing, but rather one of the DLL's dependencies is missing.
Make sure you're installing the Update 3 version of the Visual C++ 2015 Redistributable.
One of the requirements of the Visual C++ 2015 Redistributable is KB2999226. Make sure this is installed as well.
If it's already installed, post the installation log from the Visual C++ 2015 Redistributable installer package.
on windows server 2012 R2
I had same issue. Windows update + installing windows specific update solved it.
see: https://github.com/dotnet/core-setup/issues/4388.
I installed this update:
https://support.microsoft.com/en-us/help/3118401/update-for-universal-c-runtime-in-windows
TL;DR: Install these Windows updates in this order:
KB2919442
KB2919355
KB2999226
After installing the above 3 Windows update in the correct order, the error about the missing dll should stop.
I ran into basically this same problem when attempting to deploy a .NET Core 2.1 application to a Windows 2012 R2 machine. The root cause seems to have been due to a corrupt installation of the Microsoft Visual C++ Redistributable.
From Microsoft's documentation:
Visual C++ Redistributable Packages install runtime components of
Visual C++ Libraries on a computer that does not have Visual C++
installed. The libraries are required to run applications that are
developed by using the corresponding version of Visual C++.
After some troubleshooting and research, I fixed the issue by manually installing these 3 Windows updates in this order:
KB2919442
KB2919355 (requires a reboot)
KB2999226
The order of installation of these Windows updates is important! KB2999226 depends on KB2919355, and KB2919355 depends on KB2919442.
After installing those Windows updates, dotnet.exe and the application began to run correctly.

New SQL Server Installation - Attempted to perform an unauthorized operation

I have a new Windows 10 Home machine and I want to install SQL server. I already have Visual Studio 2017 installed and SSMS 2017 (Which I initially though installed SQL).
On first try I got this error:
VS Shell installation has failed with exit code 1638
And found I needed to Uninstall the Microsoft Visual C++ 2017 Redistributable (x86) and (x64), install SQL Server, then reinstall the Microsoft Visual C++ 2017 Redistributable (x86) and (x64). As seen here
Then I got this error:
Attempted to perform an unauthorized operation
I tried the registry key permissions from this link
I tried editing my local group policy but Win 10 doesn't have one.
I tried exiting from all Firewalls and Anti-malware software.
I have been trying to install SQL Server for 4 weeks now
Edit:
I found the logs but the error seems the same:
A security application installed on the server was preventing SQL Server setup to get access
After weeks of Googling i turns out my machine came with a bit of software called Bull Guard which conflicts with SQL Server. After uninstalling this software the problem was solved. (Disabling the service didn't work)
(1) If the VS issue is not solved
According to the following MSDN related answer
"The exit code 1638 means "Another version of this program is already installed", this error message is provided by Windows Installer, please check if you have installed other later version of VS Shell on your machine."
Also they mentioned that if you have installed Visual studio 2017 this can also affect the installation of SQL Server 2017. The version of VS Shell inside some versions of Visual Studio 2017 is later than the VS Shell inside SQL Server, as a result, you will meet this problem, please check it.*
The Suggested solution was
Uninstall Visual Studio 2017, then install SQL Server 2017, after that, install Visual Studio 2017 again.
Also this was the first suggested solution in the link you provided (Help installing SQL Server 2017 - VS Shell installation has failed with exit code 1638)
(2) If the VS issue is solved
Check for installed applications or running services that are preventing the installation process to get access
In my case it was related to Microsoft Edge. Found the answer here.
The SQL Express 2014 installation worked after I installed ran the Edge installer (available at https://www.microsoft.com/en-us/edge/business/download), opened Edge and checked for updates.

System.Data.Sqlite - Failure to install Microsoft Visual C++ Runtime

I am trying to install the design-time components of System.Data.Sqlite -- I want to be able to connect to SQLite databases from within Visual Studio, execute queries, and retrieve data.
As per the instructions on the System.Data.Sqlite downloads page, I downloaded the setup bundle for 32-bit Windows, targeting .NET 4.6.
When I try to install, I get the following error:
Failed to install Microsoft Visual C++ Runtime: vcredist_x86_2015_VSU2.exe, Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel
I am running Visual Studio 2015 Community Edition Update 3, with cumulative hotfixes, available here; on Windows 10 64-bit.
I tried uninstalling the Microsoft Visual C++ 2015 Redistributable (x86) and rerunning the VS 2015 Community Edition hotfix installer to reinstall it, and then rerunning the SQLite installer, but the same error still occurred.
How can I resolve this?
You were oh-so-close to the solution. You've just got a couple steps backwards.
The issue is that the System.Data.Sqlite package includes VC++ Update 2, but you've already got the newer Update 3 installed. Rather than recognize there's already a newer version installed, all the setup program sees is that installing U2 failed and bails out. So, we need to let it do its thing and install the U2 package to get past that point:
Uninstall "Microsoft Visual C++ 2015 Redistributable (x86) - 14.0.24212"
Install the Sqlite package
THEN re-install Update 3

Microsoft.ACE.OLEDB.12.0 provider not registered

I'm trying to connect my access database using Visual Studio 2013 running on Windows 8.
I found some fixes but they don't work for me.
First, I tried installing Microsoft Access Database Engine 2010 Redistributable (AccessDatabaseEngine_x64) and installed it successfully but it is giving me the same error.
Another fix that I found was installing 2007 Office System Driver: Data Connectivity Components but running the file gives me the error "The installation of this package failed."
Im running Office Professional Plus 2013 64-bit, Windows 8 Pro 64-bit, and Visual Studio Professional 2013
Hit the same thing. Try installing the Office2007 redist as well - https://www.microsoft.com/en-us/download/23734 . Solved my prob.
go to your project properties > compile > and uncheck the Prefer-32bit

Error While Installing Visual Studio 2005 Express Edition

I have installed .net framework 2.0 and now I am trying to install Visual Studio 2005 Express Edition from the Internet, but when I execute the setup file I am getting the following error:
"The upgrade patch cannot be installed by the windows Installer service because the program to be upgraded may be missing or the upgrade patch may update a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade patch".
Can anyone tell me what is the error and how should I rectify it?
Please note that I am already having Visual Studio 2008 installed on my system.
Please help me!
Thanks in advance!
It sounds like you are trying to install the Service Pack or an invalid file. When installing Visual Studio 2008 and choosing the default installation mode it will already install SQL Server 2005 Express edition on your machine if it is not already installed.
If you did a custom install you can re-run the Visual Studio 2008 installation and select to install SQL Express.
Also make sure you don't have Sql Server 2008 installed, and if you have do an advanced install on Sql Server 2005 express and change the instance name to something else. I would recommend rather installing Sql Server 2008, either from the internet or from the Sql Server Installation Disc, by choosing Express edition during installation.

Resources