A quick way to find out if an application is running under 1.1 is to quickly run a script that displays the version of the environment:
<%@ Page Language="C#" %> <script runat="server"> void Page_Load(Object sender, EventArgs e) { Response.Write(System.Environment.Version.ToString()); } </script>
Or, if you get yellow death screens, you will see the version number at the bottom of the page: 
I suspect that you cannot select Framework v1.1 when adding a new application pool or changing an existing one, so the installer 1.1 does not know how to add a critical piece of metadata or configuration information in IIS.
.NET 2.0 ships with 2008 and .NET 4.0, a later product, and IIS7, so IIS is more likely to integrate better. Or, v1.1 does not have any significant metadata nugget that IIS7 InetMgr should be able to add to its various lists.
The reason you can see v1.1 in the drop-down list for the Basic Settings dialog for ASP.NET 1.1, and not in other pools, is that it is already installed and therefore will simply be included in the list. I experimented and changed this in a newly created ASP.NET 1.1 pool and installed it in 2.0, saved it, and then reopened it. As a result, v1.1 is no longer visible.
Also, the reason it is called v1.1 rather than the .NET Framework v1.1.4322 is because the value is selected from the managedRuntimeVersion attribute in the application pool configuration in applicationHost.config . The reason that versions 2.0 and 4.0 show a full description is because there is probably some IIS friendly metadata with a resource search string that is not available for version 1.1.
To set the pool to use v1.1 at creation time, you must manually set the managedRuntimeVersion attribute using APPCMD.EXE :
appcmd add apppool / name: "NewPool" /managedRuntimeVersion:"v1.1 "
This is explained at the bottom of the article you are attached to.
To change an existing pool to use 1.1, you must also use the APPCMD.EXE command line APPCMD.EXE :
appcmd set apppool /apppool.name:"SomeOtherPool "/managedRuntimeVersion:"v1.1"
Interestingly, you can set managedRuntimeVersion to any old value:

I would like to explain why the ASP.NET 1.1 application pool is magically created or how the installer handles the correct actions with handler mappings (anyway, all the correct preConditions installed, so either the installer has been updated, or IIS has some kind of trigger, to look for fixed 1.1 and fix things).
Update:
I contacted Bill Staple, author of this article:
How to install ASP.NET 1.1 with IIS7 in Vista and Windows 2008
I asked him about how the installer 1.1 or IIS7 manages to do the right thing with respect to handler mappings, creating an "ASP.NET 1.1" application pool, etc. This was his answer:
โIf memory is running, Vista / Windows 2008 created an application compatibility pad that would detect the installer 1.1 and create an application pool / application handler mapping. However, in Windows 7 / Windows Server 2008 the R2.NET Framework 1.1 is no longer supported.โ and I wonโt be surprised if this code is pulled out, although I donโt know for sure. "
So the mystery is solved.