Configuring servers is not my strong suit by any means. I'm trying to move a development project to Windows 7. One of the things that I need to run the application is to select ASP.NET v4.0 as the application pool withing IIS.

I went through the directions in the following link to make sure that the proper Application Development Options were selected:

http://www.gotknowhow.com/articles/how-to-install-iis7-and-enable-aspnet

From within the IIS Manager, I select Application Pools and only see
- Classic.NETAppPool
- DefaultAppPool

I need to also be able to select from
- ASP.NET v4.0
- ASP.NET v4.0 Classic

How can I add these to the list of available application pools?

Thanks.

link|improve this question

36% accept rate
1  
If my answer was helpful to you, can you please accept it? – Brad Christie Apr 4 at 19:05
feedback

4 Answers

Chances are you need to install .NET 4 (Which will also take care of a new AppPool for you)

  1. Open your command prompt (Windows + R) and type cmd and press ENTER
    You may need to start this as an administrator if you have UAC enabled.
    To do so, locate the exe (usually you can start typing with Start Menu open), right click and select "Run as Administrator"
  2. Type cd C:\Windows\Microsoft.NET\Framework\v4.0.30319\ and press ENTER.
  3. Type aspnet_regiis.exe -ir and press ENTER again.
    • at this point you will see it begin working on installing .NET's framework in to IIS for you
  4. Close the DOS prompt, re-open your start menu and right click Computer and select Manage
  5. Expand the left-hand side (Services and Applications) and select Internet Information Services
    • You'll now have a new applet within the content window exclusively for IIS.
  6. Expand out your computer and locate the Application Pools node, and select it. (You should now see ASP.NET v4.0 listed)
  7. Expand out your Sites node and locate the site you want to modify (select it)
  8. To the right you'll notice Basic Settings... just below the Edit Site text. Click this, and a new window should appear
  9. Select the .NET 4 AppPool using the Select... button and click ok.
  10. Restart the site, and you should be good-to-go.

(You can repeat steps 7-on for every site you want to apply .NET 4 on as well).

link|improve this answer
2  
Just make sure to run the cmd prompt with Administrative rights – Ahmad Mar 7 '11 at 10:19
Bless you mate! This saved me quite a bit of time :) – Varun Vohra Sep 17 '11 at 18:14
Thank you very much for this very helpful step by step solution, It solved my problem right away – user1010572 Feb 22 at 10:13
Thanks for this - setup a new web server installed everything from web PI, latest framework updates and what do you know? IIS isn't even aware of ASP.NET ... this has happened too many times before, Microsoft, you really need to great rid of the clowns responsible for this. – Dal Feb 27 at 21:19
@Brad I didn't get a new app pool. The log file from running regiis, shows .NET 4 was successfully installed, and now I can select .NET 4 as the "ASP.NET version" for a site. But it seems I still have to manually create a new app pool(since I can't mix v2 apps with v4 apps in the same pool). – AaronLS Mar 6 at 21:08
show 7 more comments
feedback

In the top level of the IIS Manager (above Sites), you should see the Application Pools tree node. Right click on "Application Pools", choose "Add Application Pool".

Give it a name, choose .NET Framework 4.0 and either Integrated or Classic mode.

When you add or edit a web site, your new application pools will now show up in the list.

link|improve this answer
feedback

Open a windows command line. Switch directories to C:\Windows\Microsoft.Net\Framework\v4.0.xxxx where the x's are the build number. Type aspnet_regiis -ir and hit enter. This should register .Net v4.0 and create the application pools by default. If it doesn't, you will need to create them manually by right-clicking the Application Pools folder in IIS and choosing Add Application Pool.

Edit: As a reference, please refer to the section of the linked document referring to the -i argument.

http://msdn.microsoft.com/en-us/library/k6h9cz8h.aspx

link|improve this answer
feedback

I just encountered this and whilst we already had .NET 4.0 installed on the server it turns out we only had the "Client Profile" version and not the "Full" version. Installing the latter fixed the problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.