Windows Service Name

ryanlcs

Member
Joined
Apr 17, 2008
Messages
12
Programming Experience
Beginner
I have a Window Service program created using Visual Studio 2005, how can I change the name that appears under Services Management Console at the design stage??

Thank You.
 
Try this

When you add the installer project it installs two other pieces. The ServiceInstaller1 has a property in the properties window call ServiceName. You can also do it in code like this Me.ServiceName = "ServiceTest2" in the Sub New of the class.

Ty
 
Back
Top