本文介绍了错误说不允许空管道的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
需要小帮助,当我尝试使用导出cmdlet导出结果时,它会给我一个错误,说明
不允许空管道,所以有人可以帮我要获得CSV格式的结果请。
Foreach($ user用户){Get-MsolUser -UserPrincipalName $ user.Emailaddress.trim()| ft UserPrincipalName,DisplayName,isLicensed,UsageLocation,Licenses} |
Export-Csv'C:\output.csv'NoType
Need small help , when i am trying to export the results with the export cmdlet its giving me an error sayingempty pipeline is not allowed , so can someone help me to get the results in CSV format please.
Foreach ($user in $users){ Get-MsolUser –UserPrincipalName $user.Emailaddress.trim()| ft UserPrincipalName, DisplayName, isLicensed, UsageLocation, Licenses} |Export-Csv 'C:\output.csv' -NoType
谢谢
推荐答案
Foreach(
Foreach (
这篇关于错误说不允许空管道的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!