After resolving A NETBIOS DOMAIN NAME MUST BE SPECIFIED, I got below error while installing and configuring Active Directory through Powershell Desired State Configuration.
The PowerShell provider xActiveDirectory does not exist at the PowerShell module path nor is it registered as a WMI provider.
+ CategoryInfo : InvalidOperation: (root/Microsoft/...gurationManager:String) [], CimException
+ FullyQualifiedErrorId : ModuleNameNotFound
+ PSComputerName : 192.168.33.41
Although I had already installed xActiveDirectory module downloaded on my desktop. (Using Install-Module xActiveDirectory -Force requires Internet Connection and PowerShell run as Administrator, It automatically copies it at 'C:\Program Files\WindowsPowerShell\Modules'), I verified it using Get-DscResource -Module xActiveDirectory. Everything looked good.
Solution: Remote computer also must have Module installed., I simply copied xActiveDirectory folder and copied it on remote server at same location.
Other Solutions:
PART 1 : POWERSHELL - CREATE LOCAL IIS WEB REPOSITORY FOR DSC MODULE
PART 2 : POWERSHELL - COPY DSC MODULE REMOTELY USING LOCAL WEB REPOSITORY