Log in |
Messing with services in ZopeOn windows the current Zope installer does not actually remove the service. Its very annoying but easy to fix, just do the following:
>>> import win32serviceutil
>>> win32serviceutil.RemoveService('Zope23')
where "Zope23" is the name of the service you entered when you installed. When looking at it in the service manager in Windows you see "Zope (Zope23)". |