DSCResources/ArcGIS_WindowsService/en-US/ArcGIS_WindowsService.schema.mfl
#pragma namespace("\\\\.\\root\\default") instance of __namespace{ name="MS_409";}; #pragma namespace("\\\\.\\root\\default\\MS_409") [Description("This resource is used to manage ArcGIS Windows services.") : Amended,AMENDMENT, LOCALE(0x0409)] class ArcGIS_WindowsService : OMI_BaseResource { [key,Description("The name for the service") : Amended] string Name; [Description("An enumerated value that describes if the service is expected to be running on the machine.\nRunning {default} \nStopped \n") : Amended] string State; [Description("An enumerated value that describes the service start type.\nAutomatic \nManual \nDisabled \n") : Amended] string StartupType; [Description("An enumerated value that describes the built in account the service runs under.\nLocalSystem \nLocalService \nNetworkService \n") : Amended] string BuiltInAccount; [Description("The optional credentials the service runs under") : Amended] string Credential; [Description("The service display name") : Amended] string DisplayName; [Description("The service description") : Amended] string Description; [Description("The path to the service executable file") : Amended] string Path; [Description("A list of service dependencies") : Amended] string Dependencies[]; }; |