24 October 2008
Running the HTTPSSL service in a svchost.exe
On Windows 2003 the HTTPSSL service (the service that implements SSL) runs in the lsass.exe process. If you ever are interested in running the HTTPSSL service in a svchost.exe process instead of the default lsass.exe here is how you do it.
To configure the HTTPFilter service to run in its own svchost, we have to modify the ImagePath value for the service entry in the registry.
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\HTTPFilter
ImagePath C:\WINDOWS\system32\svchost.exe -k HTTPFilter
Restart the HTTP.SYS driver
net stop HTTP /y
net start HTTP
iisreset /start
This will make the HTTPFilter service to run under a svchost.exe instead of the lsass.exe
Ensure you backup the registry key before making the changes.
Comment Notification
If you would like to receive an email when updates are made to this post, please register here
Subscribe to this post's comments using
Comment Policy: No HTML allowed. URIs and line breaks are converted automatically. Your e–mail address will not show up on any public page.