VS 2012 missing prerequisite error - azure

I am using visual studio 2012. I have already installed the Windows Azure SDK on my system. I am still getting the following error:
The system is missing a prerequisite to execute the service
.IISExpress Development certificate is not installed.

Can you check does your system met all the requirements of installing Azure SDK
If your system meets all the requirements, then try to install the missing components from Web Platform Installer of Azure

Related

Unable to configure Microsoft Identity Platform while publishing .Net Core 3.1.4 project + VS 2022 + Azure

I have a .net core 3.1 project. The project has a dependency on Microsoft Identity Platform and SQL Server.
While publishing the project to Azure. I am not able to configure the Microsoft Identity Platform. It gives below Error window.
I am able to configure SQL Server dependency but not sure why it is not able to configure Identity Platform.
I am using
.Net core 3.1.4
Visual Studio Community Edition 2022
Asp.net core Identity Entity Framework 3.1.4
Any idea?
Because you didn't install the dotnet-msidentity tool.
You can try to open the cmd black window and execute this command following this document.
dotnet tool install Microsoft.dotnet-msidentity -g --version "1.0.0-preview.1.21212.1"
This command will solve your issue. But then you will meet another issue like screenshot below if your account has multiple tenant.
Someone met this issue too and raised a ticket to ms.
You may search for known issues here if you meet some other weird questions when using vs2022.
dotnet tool uninstall --global Microsoft.dotnet-msidentity
dotnet tool install Microsoft.dotnet-msidentity -g --version "1.0.2"
worked for me
if you have nuget problems make sure you habe a nuget.config in the directory you are running the command
Make sure nuGet is set as the first or default package source in Visual Studios.
Right click on the project, click on manage nuGet packages and click on the gear next to Package Source.
Verify that nuget.org is setup as the first package source.

Service Fabrice Local Cluster Manager Node setup error

I am trying to run service fabric local cluster manager but it is giving following error : Failed to setup local cluster.
I have Microsoft Azure service fabric SDK 3.2.187 installed locally.
Steps I followed is -
Install Visual studio 2017 - version - 4.7.03056. While installing I selected Azure development workload from VS installer.
After VS installation, I installed Service Fabric SDK from Web Platform Installer.
After this right click on Service fabric local cluster manager -> Setup local cluster -> 1 Node.
When I do this, I am getting There were errors while setting up the local cluster. Retrying..
Any help would be really appreciated.
I had similar issues many times when I tried to install SF on local machine.
Try the following steps:
First of all, check if you have IIS enabled on your PC from Windows Features. If it is disabled, enable IIS and related features.
If this not helped, do the following:
Uninstall:
Remove the installed Service Fabric SDK, Runtime and VS tools
Delete installation folder under C:\Program Files\Microsoft Service Fabric
Delete folder from registry: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Service Fabric
Reboot PC
Install:
If you already installed Microsoft Web PI, run the program and install the Microsoft Azure Service Fabric SDK again the following way:
Check if IIS is selected from the configuration of installation
Check if the prerequisite C++ package is installed during the process (Microsoft Visual C++ 2012 SP1 Redistributable Package (x64) ).
Then
Install Service Fabric tools using the Visual Studio Installer
Run the command Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Force -Scope CurrentUser from a command line as admin
Hope this helps.
Delete Fabric*.dll under C:\Windows\System32 makes it work for me.
It seems new SF would not insert these binaries into System32 folder, while old version uninstall program would not delete them. So it cause version corruption in running new version.

Error 109 WAT080 : Failed to locate the Windows Azure SDK 2.1 on Visual Studio 2013

I have Visual Studio 2013 with update 3 installed.
On the first time i opened my project, it prompted me to download and install
Azure SDK 2.2 and so i did.
When i tried to build, it fails and gives me this error message:
Error 109 WAT080 : Failed to locate the Windows Azure SDK. Please make sure the Windows Azure SDK v2.1 is installed.
So I installed SDK 2.1 but the build still fails with the same error.
These are my installed azure SDKs: 2.1, 2.2, 2.3, 2.4.
I also confirmed that the folders of each version are NOT missing here:
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Windows Azure Tools
We started the cloud project which is an MVC site on the 3rd quarter of 2013 when the Windows Azure 2.2 released and I had no problem.
Is it possible that these Azure SDKs are conflicting?
It's fixed now. Unfortunately, you cannot find the Azure SDK 2.2 for VS 2013 and older versions in web platform installer anymore. So you have to manually install all the components (according to version).
I noticed that this folder is missing.
C:\Program Files\Microsoft SDKs\Windows Azure.NET SDK\v2.2
Which means that WindowsAzureLibsForNet-x64.msi is not yet installed.
You can download it here: http://www.microsoft.com/en-us/download/details.aspx?id=40893.
I've seen solved threads about this but the solution didn't solve for everyone. I hope this would help.
I had to restart Visual Studio after Azure SDK install. ServiceHostingSDKBinDir was set fine in msbuild, but not in the VS.
I added C:\Program Files\Microsoft SDKs\Windows Azure.NET SDK\v2.3 (or whatever sdk you need eg. 2.2, 2.4) to the system path and it fixed the issue of VS2013 not being able to find the SDK.
After I'd changed the system path, I had to restart VS2013.

Installing Windows Azure SDK for .NET 2.2 VS2012 failed

I have VS2012 Ultimate Update 4 installed. I need to installed Windows Azure SDK for .NET 2.2. I install it from Web Platform Installer. When i try to create project using window azure cloud service project template. I get the error
"Creating projects requires Windows Azure Tools v2.2 to be installed"
I tried to install by standalone installer, but no success. Any Help for diagnose the problem?

Error in installing Azure tools in VS 2010

I am trying to install Microsoft Azure tools in VS 2010 ultimate trial version in Windows 7 OS. But I am getting following error ::
Error 0x80070643: Failed to install MSI package.
Error 0x80070643: Failed to execute MSI package.
Error 0x80070643: Failed to configure per-machine MSI package.
Error 0x80070643: Failed to execute MSI package.
I have searched for this error alot but did not get appropriate solution. Somewhere I read that Microsoft Web Developer needs to be installed. I have installed it too but still getting the same error. can anyone help me with this error? Could you also provide me some link and guidelines..
Have you tried installing the Azure emulator?
See here
Are you installing from the web platform installer? That should install everything needed.
I ran into the same problems installing it stand-alone, then downloaded the web platform installer and logged in on my admin account. Everything got installed correctly from there.

Resources