Examples/Resources/xComputer/6-SetComputerDescriptionInWorkgroup.ps1

<#
    .EXAMPLE
    This example will set the computer description
#>

Configuration Example
{
    param
    (
        [Parameter()]
        [System.String[]]
        $NodeName = 'localhost'
    )

    Import-DscResource -Module xComputerManagement

    Node $NodeName
    {
        xComputer NewDescription
        {
            Name = 'localhost'
            Description = 'This is my computer.'
        }
    }
}