将数据转换为 CSV 时,Powershell 是否支持使用自定义标头名称?我正在从 Active Directory 转换用户数据,并希望在标题中使用其他名称而不是属性名称。
我的代码:
$adusers | select givenName,sn,telephoneNumber,SamAccountName,physicalDeliveryOfficeName,Title,mobile | ConvertTo-Csv -Delimiter ';' | Out-File -FilePath $thefilepath