Answered by:
how to uninstall driver using windows service api?

Question
-
Answers
-
OpenService? http://msdn.microsoft.com/en-us/library/windows/desktop/ms684330(v=vs.85).aspx
Posts are provided as is without warranties or guaranties.- Marked as answer by Yuri.B Thursday, September 5, 2013 4:42 PM
All replies
-
DeleteService? http://msdn.microsoft.com/en-us/library/windows/desktop/ms682562(v=vs.85).aspx
I haven't done this before but logically thinking if CreateService is for installing then DeleteService should be the one for uninstalling.
Posts are provided as is without warranties or guaranties. -
-
OpenService? http://msdn.microsoft.com/en-us/library/windows/desktop/ms684330(v=vs.85).aspx
Posts are provided as is without warranties or guaranties.- Marked as answer by Yuri.B Thursday, September 5, 2013 4:42 PM
-
OpenService? http://msdn.microsoft.com/en-us/library/windows/desktop/ms684330(v=vs.85).aspx
Posts are provided as is without warranties or guaranties.
that's it, thanks.