Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Install network Driver Service in 2000


1 reply to this topic

Senthill

Senthill
  • Members
  • 4 posts

Posted 08 December 2001 - 10:41

Dear IS Group members,
      I am facing a peculiar problem of installing a network device driver in windows 2000 machine.

     Please suggest the best possible way to automate the installation of the driver as a service .

kind regards

         


lasenbby

lasenbby
  • Members
  • 744 posts

Posted 11 December 2001 - 19:05

A service is nothing more than a few reg entries under:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\<yourkey>

Check out the service under the key:
EventSystem

Not all of these are needed but you should get the point.   Might try searching for a service that has the same type...

Once the reg entries are placed, you can use launchappex and do basically this (as you would do at the cmd prompt):
net start <Your Service Name>
net stop <Your Service Name>

May need quotes around the service name (which is the description btw) and it is a little tricky to get the quotes right in the launchappex but it works. (Use \" to get a quote inside quotes in IS.)