Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

Missing ASP.NET Tabs in SBS2003 SP2 server

 
   Web Hosting and Web Master Forums (Home) -> IIS RSS
Next:  FTP Log  
Author Message
mlai

External


Since: Sep 25, 2007
Posts: 2



(Msg. 1) Posted: Tue Sep 25, 2007 9:44 am
Post subject: Missing ASP.NET Tabs in SBS2003 SP2 server
Archived from groups: microsoft>public>inetserver>iis (more info?)

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!

 >> Stay informed about: Missing ASP.NET Tabs in SBS2003 SP2 server 
Back to top
Login to vote
mlai

External


Since: Sep 26, 2007
Posts: 1



(Msg. 2) Posted: Wed Sep 26, 2007 12:56 am
Post subject: Re: Missing ASP.NET Tabs in SBS2003 SP2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

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" <mlai RemoveThis @community.nospam> 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!

 >> Stay informed about: Missing ASP.NET Tabs in SBS2003 SP2 server 
Back to top
Login to vote
WenJun Zhang[msft]

External


Since: Dec 16, 2005
Posts: 175



(Msg. 3) Posted: Wed Sep 26, 2007 1:42 pm
Post subject: Re: Missing ASP.NET Tabs in SBS2003 SP2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

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 <path of the application>
(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 <path of the application>
(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/default.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.
 >> Stay informed about: Missing ASP.NET Tabs in SBS2003 SP2 server 
Back to top
Login to vote
mlai

External


Since: Sep 25, 2007
Posts: 2



(Msg. 4) Posted: Wed Sep 26, 2007 1:42 pm
Post subject: Re: Missing ASP.NET Tabs in SBS2003 SP2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

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 <path of the application>
> (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 <path of the application>
> (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/default.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.
>
>
>
>
>
 >> Stay informed about: Missing ASP.NET Tabs in SBS2003 SP2 server 
Back to top
Login to vote
WenJun Zhang[msft]

External


Since: Dec 16, 2005
Posts: 175



(Msg. 5) Posted: Thu Sep 27, 2007 8:06 am
Post subject: Re: Missing ASP.NET Tabs in SBS2003 SP2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

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/default.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.
 >> Stay informed about: Missing ASP.NET Tabs in SBS2003 SP2 server 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Missing ASP.NET tabs - Hi Group Running a 64bit Windows 2003 R2 and in the IIS 6.in the default website I don't have any ASP.net tab ! I've executed the command to enable 32 bit apps on 64bit box also done the <framework>/aspnet_regiis -i (both 1.1. + 2.0) command -...

Frontpage Double Server Extensions Tabs - Hello, I have a new set up for my development box. WinXP Pro with Frontpage 2003 Upon installing FP Extensions 2002 I noticed that there are now 2 extensions tabs under the Properties for the web in IIS. Is this normal or should the Server Extensions...

missing Server extension - Hi, I have a IIS 6.0 setup on a Windows 2003 Standart Server (Domain member). I want to setup create a new Subsite using IIS Administration Console. According to it: http://support.microsoft.com/default.aspx? scid=kb;en-us;825451#7 I am suppose to...

missing default.htm in sus-server - i=B4ve installed SUS10SP1 in a new-installed IIS 5.0 without=20 a standard-site on a w2k server.=20 after installation i was able to connect to susadmin, sync=20 with the microsoft update server and approve updates. but it=B4s impossible to connect to..

Missing Server Variables from ALL_RAW - I have read the article by Tom Kaminski :- below ===================================================== I always use Request.ServerVariables("LOGON_USER"): http://msdn.microsoft.com/library/default.asp? url=/library/en-us/iissdk/iis/servervariab...
   Web Hosting and Web Master Forums (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]