DscResources/MSFT_WindowsFeature/en-US/MSFT_WindowsFeature.schema.mfl
[Description("Provides a mechanism to install or uninstall Windows roles or features on a target node.") : Amended,AMENDMENT, LOCALE("MS_409")]
class MSFT_WindowsFeature : OMI_BaseResource { [Key, Description("The name of the role or feature to install or uninstall.") : Amended] String Name; [Write, Description("Specifies whether the role or feature should be installed or uninstalled. To install the feature, set this property to Present. To uninstall the feature, set the property to Absent.") : Amended] String Ensure; [Write, Description("Specifies whether the subfeatures of the main feature should also be installed.") : Amended] Boolean IncludeAllSubFeature; [Write, Description("The path to the log file to log this operation.") : Amended] String LogPath; [Write, Description("A credential, if needed, to install or uninstall the role or feature."), EmbeddedInstance("MSFT_Credential") : Amended] String Credential; [Read, Description("The display name of the retrieved role or feature.") : Amended] String DisplayName; }; |