Missing ASP.NET Tabs in SBS2003 SP2 server

Missing ASP.NET Tabs in SBS2003 SP2 server

am 25.09.2007 18:44:02 von mlai

Hi,
I had to put on an web app which uses ASP.NET 2.0 on my fully patched
SBS2003 SP2 machine and just discovered that tha ASP.NET tabs are missing
from my IIS6!!!!

Does anyone have any idea on how to get them back?

Many thanks!

Re: Missing ASP.NET Tabs in SBS2003 SP2 server

am 26.09.2007 05:28:26 von mlai

OK. After extensive searching on the web...... It seems that installing
certain software on the server modified the metabase.xml file and made the
IIS believe that it is a 32-bit process running on a 64-bit OS (which is
untrue). So here are the steps to rectify my situation (just so anybody
runs into the same problem)

1) Stop the IIS Admin server
2) Open C:\Windows\system32\inetsrv\MetaBase.xml in notepad. _DELETE_ the
line that reads 'Enable32BitAppOnWin64="TRUE"'
3) Start -> Run -> iisreset (or reboot)

These instructions are what I got off some gurus on the web. Not from
myself. So kudos to whoever discovered and solved this.

BTW, the common cupid of the situation was VMWare server. However, I don't
know if other software can cause the some problem.

"mlai" wrote in message
news:876DE6DE-41B4-4203-9B71-FE1CCE16AE26@microsoft.com...
> Hi,
> I had to put on an web app which uses ASP.NET 2.0 on my fully patched
> SBS2003 SP2 machine and just discovered that tha ASP.NET tabs are missing
> from my IIS6!!!!
>
> Does anyone have any idea on how to get them back?
>
> Many thanks!

Re: Missing ASP.NET Tabs in SBS2003 SP2 server

am 26.09.2007 15:42:30 von wjzhang

Hi mlai,

Glad to see you've figured out the problem. Yes, this is a known issue of
running IIS in 32 bit mode on a 64 bit Windows operating system.

The root cause of this issue is: when we run aspnet_regiis -i or
aspnet_regiis -config under Microsoft.NET\Framework directory, it will
screw up the 64bit registration for MMC, ASP.NET tab will disappear, i.e:
as long as 32bit aspnet_regiis is run, 64bit MMC won't work. If we run
aspnet_regiis -i -enable under Framework64, ASP.NET tab will show on MMC
again.

As the following Knowledge Base article described, the solution is to use
the command line tool to configure different versions of ASP.NET.

How to switch between the 32-bit versions of ASP.NET 1.1 and the 64-bit
version of ASP.NET 2.0 on a 64-bit version of Windows
http://support.microsoft.com/?id=894435

To configure on individual web application/virtual directory level, you can
run:

aspnet_regiis -s
(Install scriptmaps for this version at the specified path, recursively.
Existing scriptmaps of lower version are upgraded to this version.)

E.g. aspnet_regiis.exe -s W3SVC/1/ROOT/SampleApp1

OR

aspnet_regiis -sn
(Install scriptmaps for this version at the specified path,
non-recursively. Existing scriptmaps of lower version are upgraded to this
version.)

Have a nice day.

Sincerely,

WenJun Zhang

Microsoft Online Community Support

==================================================

Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscriptions/managednewsgroups/de fault.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at:

http://msdn.microsoft.com/subscriptions/support/default.aspx .

==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.

Re: Missing ASP.NET Tabs in SBS2003 SP2 server

am 26.09.2007 16:34:00 von mlai

Thanks. But my server is SBS2003 which is 32 bit.....

""WenJun Zhang[msft]"" wrote:

> Hi mlai,
>
> Glad to see you've figured out the problem. Yes, this is a known issue of
> running IIS in 32 bit mode on a 64 bit Windows operating system.
>
> The root cause of this issue is: when we run aspnet_regiis -i or
> aspnet_regiis -config under Microsoft.NET\Framework directory, it will
> screw up the 64bit registration for MMC, ASP.NET tab will disappear, i.e:
> as long as 32bit aspnet_regiis is run, 64bit MMC won't work. If we run
> aspnet_regiis -i -enable under Framework64, ASP.NET tab will show on MMC
> again.
>
> As the following Knowledge Base article described, the solution is to use
> the command line tool to configure different versions of ASP.NET.
>
> How to switch between the 32-bit versions of ASP.NET 1.1 and the 64-bit
> version of ASP.NET 2.0 on a 64-bit version of Windows
> http://support.microsoft.com/?id=894435
>
> To configure on individual web application/virtual directory level, you can
> run:
>
> aspnet_regiis -s
> (Install scriptmaps for this version at the specified path, recursively.
> Existing scriptmaps of lower version are upgraded to this version.)
>
> E.g. aspnet_regiis.exe -s W3SVC/1/ROOT/SampleApp1
>
> OR
>
> aspnet_regiis -sn
> (Install scriptmaps for this version at the specified path,
> non-recursively. Existing scriptmaps of lower version are upgraded to this
> version.)
>
> Have a nice day.
>
> Sincerely,
>
> WenJun Zhang
>
> Microsoft Online Community Support
>
> ==================================================
>
> Get notification to my posts through email? Please refer to:
> http://msdn.microsoft.com/subscriptions/managednewsgroups/de fault.aspx#notif
> ications.
>
> Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
> where an initial response from the community or a Microsoft Support
> Engineer within 1 business day is acceptable. Please note that each follow
> up response may take approximately 2 business days as the support
> professional working with you may need further investigation to reach the
> most efficient resolution. The offering is not appropriate for situations
> that require urgent, real-time or phone-based interactions or complex
> project analysis and dump analysis issues. Issues of this nature are best
> handled working with a dedicated Microsoft Support Engineer by contacting
> Microsoft Customer Support Services (CSS) at:
>
> http://msdn.microsoft.com/subscriptions/support/default.aspx .
>
> ==================================================
>
> This posting is provided "AS IS" with no warranties, and confers no rights.
>
>
>
>
>

Re: Missing ASP.NET Tabs in SBS2003 SP2 server

am 27.09.2007 10:06:34 von wjzhang

In this case, the Enable32BitAppOnWin64 property shouldn't be set in
metabase. Next time you can use Metabase Explorer utility to modify the key
and properties other than editing metabase.xml directly. The tool is
included in IIS6 reskit tools:

Internet Information Services (IIS) 6.0 Resource Kit Tools
http://www.microsoft.com/downloads/details.aspx?displaylang= en&familyid=56fc
92ee-a71a-4c73-b628-ade629c89499

Have a great day.

Sincerely,

WenJun Zhang

Microsoft Online Community Support

==================================================

Get notification to my posts through email? Please refer to:
http://msdn.microsoft.com/subscriptions/managednewsgroups/de fault.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at:

http://msdn.microsoft.com/subscriptions/support/default.aspx .

==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.