How to resolve iisconfigurator .exe has stopped working? - visual-studio-2012

I using visual studio 2012,i have a problem when i debug my project it shows this error.How can i resolve this .

Try to install the IIS Management Console.
I found this post: http://flummox-engineering.blogspot.com/2012/07/iisconfiguratorexe.html, but I didn't need to install "Internet Infromation Services Hostable Web Core", only the management console.
I'm running w8
http://i.stack.imgur.com/XtkjD.png

Related

Internet Information Services (IIS) 10 Express Error: Cannot read configuration file

Visual Studio 2019 can't run any project and display this error.How to resolve this error?
Navigate to C:\Users\.....\Documents\IISExpress\config, delete all config files and rebuild project, then run it.
If it doesn't work, try to uninstall IIS Express in control panel and re-install it.(you can download it in Web PI)
This issue anatomically fix when i update my visual studio 2019.

Visual Studio Doesn't Create Xamarin Bin Folder

I'm trying to build an iPad project from Visual Studio 2017 for windows, However whenever I try to debug the app I get this error
Launch failed. The app 'B2C.iPad' could not be launched on 'iPad Air
iOS 11.0'. Error: error MT0069: The app directory
'/Users/user/Library/Caches/Xamarin/mtbs/builds/B2C.iPad/acb039527d504c900b2e6c86d8d84d09/bin/iPhoneSimulator/Debug/MobiBusiness.app'
does not exist. . Please check the logs for more details.
I noticed that visual studio doesn't create bin folder on the Mac machine although it indicates the build is succeeded.
I tried building the solution without debugging and looked at the log file nothing looked suspicious and there was no error.
does anyone know what might cause this error?
Okay this is embarrassing apparently the iPad project wasn't not selected in the build configuration, so needed to select the projects from build --> Configuration Manager

Deploy .NET Core ASP.NET Website - HTTP Error 502.5 - Process Failure

I'm trying to publish the template project "ASP.NET Core Web Application (.NET Framework)" from Visual Studio 2015 to IIS.
I use the Visual Studio publish to File System feature.
I'm using Windows 10.
I followed the guide from here.
I set up a website in IIS and changed the Application Pool .NET CLR Version to No Managed Code
I instaled the .NET Core Windows Server Hosting bundle
I restarted my machine.
I get this error:
I added a logs folder, but no logs get created.
Any ideas on how I can solve this?
EDIT:
Output of running the .exe from powershell:
PS C:\TestCoreWebsite> .\Web_CoreWebNetFramework.exe
Hosting environment: Production
Content root path: C:\TestCoreWebsite
Now listening on: http://localhost:5000
Application started. Press Ctrl+C to shut down.
Then I navigate to http://localhost:5000 and the sample site works.
Found the solution:
In the root web.config change:
processPath="%LAUNCHER_PATH%"
to:
processPath=".\Web_CoreWebNetFramework.exe"
I ran the following command in cmd
C:\fullpath\dotnet C:\fullpath\PROJECT.dll
on the command prompt, which gave me a much more meaningful error:
"The specified framework 'Microsoft.NETCore.App', version '1.0.1' was
not found. - Check application dependencies and target a framework
version installed at: C:\Program
Files\dotnet\shared\Microsoft.NETCore.App - The following versions are
installed: 1.0.0 - Alternatively, install the framework version
'1.0.1'.
I Installed the correct net core and the project worked correctly
With VisualStudio 2017, open up the .csproj file and add to the first block:
<RuntimeFrameworkVersion>1.0.4</RuntimeFrameworkVersion>
Usually the result will be:
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<RuntimeFrameworkVersion>1.0.4</RuntimeFrameworkVersion>
</PropertyGroup>
For whoever faces the same issue as mine(running well in VS but got above issue when deploying into Local IIS), I missed Setting Environment Variable and It works after I added the Setting Environment Variable
Ref: How to add Setting Environment Variable in IIS

Error WAT080 : Failed to locate the Windows Azure SDK. Please make sure the Windows Azure SDK v2.0 is installed

I have installed the windows azure sdk2.0 manually from the following link
http://www.microsoft.com/en-in/download/confirmation.aspx?id=38797
I could run my cloud project but when i added a new cloud project and try to compile it is giving build error
Error WAT080 : Failed to locate the Windows Azure SDK. Please make sure the Windows Azure SDK v2.0 is installed
I am unable to figure out the problem.Any help would be appriciated.
Uninstall your current azure, then install it again by using the Web Platform Installer .

Windows Azure Tools: Error: Unable to find nativerd.dll

I am using VS2010 for a simple Windows Azure project, When I run the project I get error
following error
Windows Azure Tools: Error: IIS is not installed
Windows Azure Tools: Error: Unable to find nativerd.dll. Please verify that IIS is installed properly.
Windows Azure Tools: The system is missing a prerequisite to execute the service. Please see the release notes.
I have IIS 8 Express installed already, what else should I install to get rid of this error? Also installed VS2010SP1AzurePack.2E2.2E1
Any help would be much appriciated.
Regards,
Mansoor.
Turned out that IIS feature was not enabled in Windows Features...!
It worked after I enabled it.

Resources