diff --git a/CHANGELOG.md b/CHANGELOG.md index a61686e26..040c9cc20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -33,6 +33,7 @@ if the computer account is created enabled or disabled. - Moved examples from the README.md to separate example files in the Examples folder. + - Fix the RestoreFromRecycleBin Description - Changes to xADGroup - Change the description of the property RestoreFromRecycleBin. - Changes to xADObjectPermissionEntry diff --git a/DSCResources/MSFT_xADComputer/MSFT_xADComputer.schema.mof b/DSCResources/MSFT_xADComputer/MSFT_xADComputer.schema.mof index 487a0864c..8dad5a7a7 100644 --- a/DSCResources/MSFT_xADComputer/MSFT_xADComputer.schema.mof +++ b/DSCResources/MSFT_xADComputer/MSFT_xADComputer.schema.mof @@ -15,7 +15,7 @@ class MSFT_xADComputer : OMI_BaseResource [Write, Description("Specifies the user account credentials to use to perform the task."), EmbeddedInstance("MSFT_Credential")] String DomainAdministratorCredential; [Write, Description("Specifies the full path to the Offline Domain Join Request file to create.")] String RequestFile; [Write, Description("Specifies whether the computer account is present or absent. Valid values are 'Present' and 'Absent'. The default is 'Present'."), ValueMap{"Present", "Absent"},Values{"Present", "Absent"}] String Ensure; - [Write, Description("Try to restore the organizational unit from the recycle bin before creating a new one.")] Boolean RestoreFromRecycleBin; + [Write, Description("Try to restore the computer account from the recycle bin before creating a new one.")] Boolean RestoreFromRecycleBin; [Write, Description("Specifies if the computer account is created enabled or disabled. By default the Enabled property of the computer account will be set to the default value of the cmdlet New-ADComputer. This property is ignored if the parameter RequestFile is specified in the same configuration. This parameter does not enforce the property Enabled. To enforce the property Enabled see the resource xADObjectEnabledState.")] Boolean EnabledOnCreation; [Read, Description("Returns the X.500 path of the computer object")] String DistinguishedName; [Read, Description("Returns the security identifier of the computer object")] String SID; diff --git a/DSCResources/MSFT_xADGroup/MSFT_xADGroup.schema.mof b/DSCResources/MSFT_xADGroup/MSFT_xADGroup.schema.mof index 83e644ef9..9af230b4a 100644 --- a/DSCResources/MSFT_xADGroup/MSFT_xADGroup.schema.mof +++ b/DSCResources/MSFT_xADGroup/MSFT_xADGroup.schema.mof @@ -16,5 +16,5 @@ class MSFT_xADGroup : OMI_BaseResource [Write, Description("Active Directory attribute used to perform membership operations"), ValueMap{"SamAccountName","DistinguishedName","ObjectGUID","SID"}, Values{"SamAccountName","DistinguishedName","ObjectGUID","SID"}] String MembershipAttribute; [Write, Description("Active Directory managed by attribute specified as a DistinguishedName")] String ManagedBy; [Write, Description("Active Directory group notes field")] String Notes; - [Write, Description("Try to restore the organizational unit from the recycle bin before creating a new one.")] Boolean RestoreFromRecycleBin; + [Write, Description("Try to restore the group from the recycle bin before creating a new one.")] Boolean RestoreFromRecycleBin; };