Windows: Make our service part of the Base Group.

This commit is contained in:
Jim Norman 2006-04-12 15:51:01 +00:00
parent 6398d22745
commit 58fc5aab46

View File

@ -46,6 +46,8 @@ namespace sscs.init
private static string SERVICE_DESCRIPTION = "Novell Identity Store is used by CASA (Common Authentication Service Adapter) "
+ "to encypt and store credentials entered by users. These credentials can be used to authenticate to additional network services";
private static string SERVICE_GROUP = "Base";
public ProjectInstaller()
{
// This call is required by the Designer.
@ -137,6 +139,7 @@ namespace sscs.init
service = services.OpenSubKey(this.serviceInstaller1.ServiceName, true);
//Add service's description as a REG_SZ value named "Description"
service.SetValue("Description", SERVICE_DESCRIPTION);
service.SetValue("Group", SERVICE_GROUP);
}
catch(Exception e)
{