Jump to content

99sono

Member
  • Posts

    3
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Portugal

Everything posted by 99sono

  1. I have been thinking about this and i have come to the only logical conclusion: 1) Your answer can not be corrent. There is no sense that a svchost would complain about a missing service name. If you do not list a service name in the set of dll's that svchost should load than that is your problem. it means that your computer has the potential to be runing a service that it is not, simply because the registry is not as configured as it could. Still the configuration of the system is not faulty simply because you are not telling it to run the service. The only condition that would ever make any sense, would be if the service that you are missing is a dependency for the proper execution of some other service. 2) The error says that some file does not implement the service. This message for me can only mean one thing: the list of services that I am telling svchost to run contain one service, that for some reason, the dll it calls upon does not implement a service with that name. So, the most likely reason for this... is that whoever implemented the regcrap by hand... is calling the dll having without properly typing the name of the dll. So, I am assuming that... if I start eleminating one by one the services that that svchost runs... i should eventually make the error message dissappear and pin point the origin of the problem. 3) Independtly of the error message that i get, I do not see the point of listing services... in the list of services that are automatically called upon at boot time by svchost executable. From what i could gather this application runs on its own. So for example if the System Restore Service is triggered by the svchost whose key svcnet; why the hell would I need to see in the list of services a key to System Restore? Just to faciliated the process of bringing down that service in case i wanted? 4) Having 3 in mind, and given that in my computer most of those services of Application Whatever... (i can not recall which services was bogus) are effectively runing in a SVCHOST process... should it say that the service is effectively runing? Or, Is this service special in the sense that: the operating system only tells me that it is runing if OS managed to load all the dlls that it should? Otherwise, some half handicaped service is runing... but not the one defined in the registry? Is that it? Well... i will experiment some more with that computer when i get the opportunity. Edit: Actually forget it: I've been cheking the execute statements of the other services that are loaded by netsvc and I realized that they are all the same. So the serivce AeLookupService is just another service of that type: it's purpose is not get the remaing serviced in netsvc started (as I throught it was)... it is to tell the svchost, in case it did not start this service, to load the service dll. So In my case there can only be one explanation, tehre is something wrong with my dll. Or maybe i forgot to restart the computer after updating the registry, but I did not think that was necessary. The changes take effect imidiately if I am not mistaken. But now I am sure I am geting close to solving the mistery . Final edit: Today i got access to the computer and managed to solve it. Indeed the solution was right to begin with, what was necessary was to restart the computer after having added the service to the netscs key. And that's that for the happy ending.
  2. Also, today i tried executing the .reg file in attachement and it did not change the problem: it persisted with the same error message.
  3. Hello, your solution does not seem to work for me... And with your type I have done some investigation by myself, and your solution does not seem to make sense... from what i could gather. Let me explain my point: 1) Svchost seems to be a generic process whose only purpose is to bundle up a bunch of other processes that you want your system to run, but that you do not want to appear as distinct in your taskbar. Therefore, by runing a number of services and processes under svchost you manage to reduce the number of listed processes that appear in your system. What the computer system does is: when it boots, it read all the keys and their respective values under HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsNT\CurrentVersion\Svchost ; and for each key a svchost is lauched, fathering all the services that were listed in the value attribute. http://support.microsoft.com/kb/314056 2) When i execute >tasklist /svc , i can see that there is an svchost process that is responsible for the following set of services: AudioSrv, BITS, Browser, CryptSvc, dmserver... etc. Furthermore, I can see that this list of services belongs is defined in the registry Under HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsNT\CurrentVersion\Svchost, with the key value: netsvcs 3) From 2, i can conclude that most, if not all, of the services under netsvcs where effectively lauched with success. So this svchost process is also being lauched at boot time without fail 4) When i check the properties of the Application Expericente lookup service, i see that the command that this service executes when it is run is: >svchost -k netsvcs 5) From four: i can only conclude one thing: The purpose of the application experience lookup service (AeLookupSvc) is simply to order the execution of a specific svchost process. That which is responsible for lauching services like: borwser, AudioSrvc... etc Therefore, I can not see the point of AeLookupSvc on this list. That would be, afeter all, telling a service to call uponitself. You have AeLoopUpSvc runing a new svchost process, which would be trying to run another AeLookupSvc process, and you enter an infiite cycle. 6) I tried adding AeLookSvc to the registiry as you have told. And it did not change anything 7) From the error: 1083 - The executable program that this service is configure to run in does not implement the service. I can only conclude that some service in the netsvc list is badly defined. Por exemple, it does not find the dll of some service or whatever. Can you help me out? Thanks in advance.
×
×
  • Create New...