AD-NewComputer.ps1

function AD-NewComputer {
    param (
        [Parameter(Mandatory = $true)]
        [string]$ComputerName
    )
    New-ADComputer -Name $ComputerName -Enabled $true
}