Skip to content

Commit

Permalink
ADComputer: Fix SamAccountName Property Description (#540)
Browse files Browse the repository at this point in the history
- ADComputer
  - Fixed the SamAcountName property description (issue #529).
  • Loading branch information
X-Guardian authored and johlju committed Jan 12, 2020
1 parent a0466c6 commit 93bfdb0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 93bfdb0

Please sign in to comment.