home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / os / mswindo / programm / win32 / 2416 < prev    next >
Encoding:
Internet Message Format  |  1992-12-12  |  1.5 KB

  1. Path: sparky!uunet!ogicse!news.u.washington.edu!tad
  2. From: tad@wrq.com (Tad Marshall)
  3. Newsgroups: comp.os.ms-windows.programmer.win32
  4. Subject: Re: network-service-errors
  5. Message-ID: <1992Dec12.234719.8129@u.washington.edu>
  6. Date: 12 Dec 92 23:47:19 GMT
  7. Article-I.D.: u.1992Dec12.234719.8129
  8. References: <92344.113951K3005E1@ALIJKU11.BITNET> <strobl.723933747@gmd.de>
  9. Sender: news@u.washington.edu (USENET News System)
  10. Organization: Walker Richer & Quinn, Inc., Seattle, WA
  11. Lines: 22
  12.  
  13. In article <strobl.723933747@gmd.de> strobl@gmd.de (Wolfgang Strobl) writes:
  14. >>E1068: The dependency service or group failed to start.
  15. >>occured on starting any service.
  16. >
  17. >In short: I got that message too (what does it mean, anyway?).
  18. >It seems to be related to the network card. Using a different,
  19. >newer card solved the problem.
  20.  
  21. NT likes to do various things on an as-needed basis, postponing execution
  22. until it is actually required.  The theory is that it may never be required,
  23. so you can save time and memory by waiting.  The network components work this
  24. way ... the network driver isn't actually started until some higher protocol
  25. layer demands it, even when everything is configured.
  26.  
  27. So what happens is that some higher protocol layer tries to start, sees that
  28. it has no network driver, and tries to start the network driver as a
  29. "dependency service".  The network driver fails to start for some reason, and
  30. you get the "dependency service failed to start" message.
  31.  
  32. Fix your adapter/driver problem, and the message will go away.
  33.  
  34. -- Tad
  35.