IIS 10.0.10586.0 on Windows 10: Missing Deploy option - iis

I have installed IIS from control panel on Windows 10. Also Web Deploy 3.6 is already installed, maybe because I have installed visual studio 2013 ultimate and Visual Studio 2015.
Now I am trying to deploying a Web application on IIS. I have deployed it using "Web deploy package" publish method from Visual Studio. So from IIS, I am trying to import this package but Deploy option is missing under Default Web Site when I do right-click on it and hence that I cannot import application...
What's the problem?

Solution:
Using Web Platform Installer, uninstall web deploy 3.6 and install web deploy 3.5. After that an iisreset can be done.

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.

Steps do I have to take to make IISExpress to run the iisnode when IISExpress is run from Visual Studio

Here are the technologies used in my work environment:
-Node JS version 8.10.0 win x64
-Visual Studio 2015 Community Update 3
-iisnode v0.22.1 x64
-IIS Express
When I installed iisnode, the iisnode configuration was located here:
C:\Program Files\iisnode\www\configuration\web.config
Within C:\Program Files\iisnode\www , there are directories ( one directory for each node application )
I created an ASP.NET MVC solution in Visual Studio.
Now when I run the aforementioned ASP.NET MVC solution in Visual Studio, the IISExpress will properly deploy and run the solution.
However, how can I configure IISExpress to run the iisnode that was installed? What steps do I have to take to make IISExpress to run the iisnode when IISExpress is run from Visual Studio?
The documentation says
Installing for IIS 7.x/8.x
* Install iisnode for IIS 7.x/8.x: x86 or x64 - choose bitness matching your system
* To set up samples, from the administrative command prompt call %programfiles%\iisnode\setupsamples.bat
* Go to http://localhost/node
Installing for IIS Express/WebMatrix
* Install WebMatrix using the Web Platform Installer
* Open WebMatrix, choose “Site from folder”, enter %localappdata%\iisnode\www, start the site, and play with the iisnode
samples, or
* Use node.js templates to get started quickly with an Express application or a skeleton Hello World
But WebMatrix is already end of life. So you need to manually create a site on IIS Express instead (or use a tool like Jexus Manager).
There does not seem to be any Visual Studio integration mentioned though.

How do I debug an AngularJS app in Visual Studio 2013 using Grunt?

I am currently trying to debug an AngularJS app I'm writing using Visual Studio 2013.
I have the recently released Node.js Tools installed.
The app has been scaffolded using Yeoman/Bower/Grunt and uses the commandline grunt serve command to package and start the localhost webserver.
How do I enable debugging from Visual Studio 2013? Do I have to attach to process, or can I hook it up to the trusty F5 in vs2013, or is it even possible at all?
There is a Visual Studio extension which enables Grunt integration:
Grunt Launcher
It adds a right click menu with options to launch Grunt, Gulp and Bower commands. When right clicking on a gruntfile you will see a new submenu listing all your options.
There is also an Angular.js template:
Angular.js SPA Template
There are also more advanced solutions:
Building with nodeJS Tools for Visual Studio
ASP.net SPA Solution Template
KarmaVs
How Can I Benefit from Grunt for my Visual Studio Based Web Development
Grunt your ASP.net Builds
Creating a Software Development Kit

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?

Visual Studio Express 2012 for Web won't start. "Cannot find one or more components"

I installed VS Express 2012 for Web from the Web Platform Installer, but it won't start. I click the shortcut (or the EXE) and get this error message:
Microsoft Visual Studio Express 2012 for Web
Cannot find one or more components. Please reinstall the application.
I've tried uninstalling, reinstalling, running the repair tool. Downloading the standalone install, etc. I have Windows 7 x64 SP1 fully updated from Windows Update. I'm not sure where to begin troubleshooting. I ran collect.exe but don't know where to look or what to look for.
I had the same problem with VS 2012 Express for Desktop, also on Windows 7 x64 SP1. These two links have the same solution which worked for me:
http://social.msdn.microsoft.com/Forums/en-US/4f24be62-7a19-4f95-bc33-1f57cc3d3fcd/visual-studio-express-2012-for-desktop-cannot-find-one-or-more-components?forum=vssetup
http://maditguy72.blogspot.com/2013/06/cannot-find-one-or-more-components.html
The solution that worked for me is to delete this registry key: [HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers]

Resources