views:

449

answers:

2

Where can I set the display name in the Service Control Manager of a c++ app?

+3  A: 

ChangeServiceConfig2

Roger Lipscombe
+2  A: 

It's in the registry, under HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/[yourservicekey]/DisplayName

Arkadiy
Registry can be found in Start->run->regedit
Andreas
you can find out the [yourservicekey] as following: Start->Run->cmd.exeType:sc.exe GetKeyName [display_name_of_service_that_you_want_to_change]
Andreas