First time here? Check out the site's "greatest hits" or read a post from the archives. Feel free to leave a comment or ask a question, and consider subscribing to the latest posts via RSS or e-mail. Thanks for visiting!
« The Spirit of Open Source - Netiquette c... | Main | Back to Basics - This is not the object ... »

I've blogged before about 32-bit vs. 64-bit .NET under IIS and how different Framework-bitnesses need different Application Pools (AppPools).

Someone asked how you find out what AppPools are on a machine and how do you find out which ones are 32-bit? There's a number of ways, depending on your needs:

If you're running a batch file or command-line script and IIS7, you might use the standard IIS7 appcmd.exe tools. You'll need to be Administrator, of course, as we're talking about Web Server configuration here.

To list all AppPools:

c:\Windows\System32\inetsrv\appcmd list apppool
APPPOOL "Joe" (MgdVersion:v2.0,MgdMode:Integrated,state:Started)
APPPOOL "Sally" (MgdVersion:v1.1,MgdMode:Classic,state:Started)
APPPOOL "Fred" (MgdVersion:v2.0,MgdMode:Integrated,state:Started)

To list just 32-bit AppPools:

c:\Windows\System32\inetsrv\appcmd list apppool /enable32BitAppOnWin64:true
APPPOOL "Fred" (MgdVersion:v2.0,MgdMode:Integrated,state:Started)
Basically, any way, be it WMI, COM, PowerShell, or AppCmd.exe that lets you look at the Enable32BitAppOnWin64 property of an AppPool will get you your answer.


Friday, July 11, 2008 4:14:52 AM (Pacific Standard Time, UTC-08:00)
OpenId test
Wednesday, August 27, 2008 11:45:22 PM (Pacific Standard Time, UTC-08:00)
Here is one of the way how you do it using new PowerShell provider for IIS 7 (sorry for badly formatted output). This command by default will show you all pools with their status and list of assigned applications:

PS IIS:\ #> dir iis:\apppools | where {$_.enable32BitAppOnWin64 -eq $false}

Name...............................State.................Applications
--------------------------------------------------------
DefaultAppPool_______Started_______Default Web Site
_______________________________________mysite
_______________________________________/appDefault
...
Comments are closed.

Contact

Sponsors

Hosting By

On this page...

Tags

Calendar

<November 2008>
SunMonTueWedThuFriSat
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456

Archives

Google Ads