installUtil can not uninstall Windows Serivce created by vc++.net

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

-- created a .net windows service with c++, framework 1.1. It can only be
installed with ServiceName.exe -install in console window. But I can not
uninstall it.
According to documentation, I tried installUtil /u SerivceName.exe. But it
fails.
Any one has any help?
thanks!
 
From: "=?Utf-8?B?ZGF2aWQtdGlnZXI=?=" <[email protected]>
| -- created a .net windows service with c++, framework 1.1. It can only
be
| installed with ServiceName.exe -install in console window. But I can not
| uninstall it.
| According to documentation, I tried installUtil /u SerivceName.exe. But
it
| fails.
| Any one has any help?

Try "ServiceName.exe -install /u"
C++ services are weird about calling InstallUtil directly.

Katy
 
Back
Top