I have a kernel service driver , i want to insta开发者_Go百科ll it with an installer . I use Wix that already copy files in driver store but i still need to add the service to the nerwork manualy (in local area connection properties) How can i do this in wix or in javascript ?
You will have to write a custom action to do this. You can choose between managed ( C# / DTF ) and unmanaged ( C++ ) and I'm guessing you'll need unmanaged. WiX has a C++ Custom Action project to help you get started.
I have found a good example in WinDDK : src\network\config\bindview
精彩评论