导出为CSV只返回字符串长度

我试图让这个脚本导出为CSV文件,它只列出字符串的长度" title="字符串的长度">字符串的长度,而不是我试图拉的电子邮件。导出为CSV只返回字符串长度

Get-ADGroup -filter {name -like 'Security Group'} | 

Get-ADGroupMember -Recursive |

Get-ADUser -Properties Mail |

select -ExpandProperty Mail |

Export-Csv -NoType MyCSVfile1.csv

回答:

Export-Csv希望接收的对象,你给它一个字符串,它给你的输出文件的字符串的属性(即Length)。

删除-ExpandProperty它会没事的。

Get-ADGroup -filter {name -like 'Security Group'} | 

Get-ADGroupMember -Recursive |

Get-ADUser -Properties Mail |

Select Mail |

Export-Csv -NoType MyCSVfile1.csv

以上是 导出为CSV只返回字符串长度 的全部内容, 来源链接: utcz.com/qa/265113.html

回到顶部