I'm importing AD data from one domain to another (totally separate). I'm having an issue with continental European characters in names - i.e. accents above letters "e" and "a". The raw CSVDE exports data as long hex values starting with X' and ending with '.
Rather than use a PowerShell script to parse a CSV and do the following conversion:
[
System.Text.UTF8Encoding]::UTF8.GetString( ( $ConvertMe-split'(..)' | ? {$_ } |% {[BYTE]( [CONVERT]::toint16($_,16)) } ) )Is there a way to get CSVDE to export in a form that is more convenient to import?