diff --git a/CHANGELOG.md b/CHANGELOG.md index 633c0bde9..d2d8ed2d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,8 @@ For older change log history see the [historic changelog](HISTORIC_CHANGELOG.md) - Updated Assert-ADPSDrive with PSProvider Checks ([issue #527](https://github.com/PowerShell/ActiveDirectoryDsc/issues/527)). - ADReplicationSite - Fixed incorrect evaluation of site configuration state when no description is defined ([issue #534](https://github.com/dsccommunity/ActiveDirectoryDsc/issues/534)). +- ADComputer + - Fixed the SamAcountName property description ([issue #529](https://github.com/dsccommunity/ActiveDirectoryDsc/issues/529)). ## 4.2.0.0 diff --git a/source/DSCResources/MSFT_ADComputer/MSFT_ADComputer.schema.mof b/source/DSCResources/MSFT_ADComputer/MSFT_ADComputer.schema.mof index 868a496ac..04a4b7977 100644 --- a/source/DSCResources/MSFT_ADComputer/MSFT_ADComputer.schema.mof +++ b/source/DSCResources/MSFT_ADComputer/MSFT_ADComputer.schema.mof @@ -18,6 +18,6 @@ class MSFT_ADComputer : OMI_BaseResource [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 ADObjectEnabledState.")] 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; - [Read, Description("Returns the security identifier of the computer object.")] String SamAccountName; + [Read, Description("Returns the SAM account name of the computer object.")] String SamAccountName; [Read, Description("Returns $true if the computer object is enabled, otherwise it returns $false.")] Boolean Enabled; }; diff --git a/source/DSCResources/MSFT_ADComputer/en-US/about_ADComputer.help.txt b/source/DSCResources/MSFT_ADComputer/en-US/about_ADComputer.help.txt index 1cd0e2f1b..582c04552 100644 --- a/source/DSCResources/MSFT_ADComputer/en-US/about_ADComputer.help.txt +++ b/source/DSCResources/MSFT_ADComputer/en-US/about_ADComputer.help.txt @@ -92,7 +92,7 @@ .PARAMETER SamAccountName Read - String - Returns the security identifier of the computer object. + Returns the SAM account name of the computer object. .PARAMETER Enabled Read - Boolean