Hi calgia,
You can export AD users to a CSV file on the DC using some PowerShell command like
$users = @("user1","user2")
$users| ForEach-Object {
Get-ADUser -Identity $_ -Properties GivenName
}|Export-Csv C:\temp\user.csv
On the clients the first and last name in the exported CSV file can be added to the registry using the New-ItemProperty cmdlet.
Best Regards,
Ian Xue
If the Answer is helpful, please click "Accept Answer" and upvote it.