Avatar of Ruttensoft
Ruttensoft
 asked on

Change IIS to 64bit mode

Hello

I am trying to install Exchange 2010. Therefore, the installer says that I have to change the IIS to 64bit mode.

I am already running 2 websites on IIS, can I change IIS to 64bit easely without messing up my websites?

How do I do it?

THanks
ExchangeMicrosoft IIS Web Server

Avatar of undefined
Last Comment
Ruttensoft

8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
QPR

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Ruttensoft

ASKER
Thanks, I found that too, but will it affect my current 2 websites?
QPR

I don't see how it could. Do you have any 32/64 bit code/threading on these sites?
To be doubly doubly safe you could take a system restore and roll back in anything weird happened
shalabhsharma

It should not effect your 2 website for safely take a system restore as recommended by QPR
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
Ruttensoft

ASKER
Fortunately I did...

Both websites dont run anymore :-/

What I did was:

cscript %SYSTEMDRIVE%\inetpub\adminscripts\adsutil.vbs SET W3SVC/AppPools/Enable32bitAppOnWin64 0

// Uninstalling 32bit
%SYSTEMROOT%\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis.exe -u
%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319\aspnet_regiis.exe -u

// Installing 64bit
%SYSTEMROOT%\Microsoft.NET\Framework64\v2.0.50727\aspnet_regiis.exe -i
%SYSTEMROOT%\Microsoft.NET\Framework64\v4.0.30319\aspnet_regiis.exe -i

What did I do wrong?

Thanks
QPR

When you say don't run anymore... what do you get?
Can you create a simple site with either an html or apsx file and serve that up?

What are the sites created in? asp/aspx/php/static html?
Any Db connections?

Have you run an iisreset from the command prompt to be sure iis restareted?
Ruttensoft

ASKER
Thanks for your patience

I am getting http 500 errors on both sites.
The sites are aspx with sql server connections
IISReset performed...
Created a new site with a simple index.html but I am getting the same error there...

Weird....
⚡ FREE TRIAL OFFER
Try out a week of full access for free.
Find out why thousands trust the EE community with their toughest problems.
Ruttensoft

ASKER
This is the error message:

Fehler beim Aufrufen von "LoadLibraryEx" für den ISAPI-Filter "C:\Parallels\Plesk\isapi\sitepreview.dll". (german)

Means something like "Error while loading "LoadLibraryEx" for the ISAPI-Filter "C:\Parallels\Plesk\isapi\sitepreview.dll"


=> Plesk is installed, is Plesk not compatible with x64?
Ruttensoft

ASKER
Ok, its working now.

Plesk has registered a non-64bit-compatible ISAPI Filter for generating Site-Previews. As I dont need this feature, I just removed the SitePreview-DLL as ISAPI-Filter.

Thanks!