首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >CSV标头的值为null,尽管数据在CSV文件标头中

CSV标头的值为null,尽管数据在CSV文件标头中
EN

Stack Overflow用户
提问于 2018-06-06 04:41:01
回答 1查看 51关注 0票数 0

我正在编写一个脚本,该脚本将从公司的某些Dls和可能附加到用户帐户的许可证中删除所有禁用的用户。

到目前为止,当我运行它时,它给我一个错误,指出脚本中的参数为空,但在导出的CSV文件中有明确的标头。脚本是:

Get-MsolUser -EnabledFilter DisabledOnly| select UserPrincipalName, isLicensed |Export-Csv -path "file\path\test" 

$Remove = Import-Csv "file\path\test"| Out-String 

Foreach($users in $Remove) {

    Remove-DistributionGroupMember -Identity CC@company.com -Member $users.UserPrincipalName -Confirm:$false

    Remove-MailboxPermission -Identity Sales -User $users.UserPrincipalName -AccessRights FullAcces -InheritanceType All -Confirm:$false

    Remove-DistributionGroupMember -Identity Everyone -Member $users.UserPrincipalName -Confirm:$false

        if($user.isLicensed -eq "true") {
        Set-MsolUserLicense -UserPrincipalName $users.UserPrincipalName -RemoveLicenses "reseller-account:DESKLESSPACK"

        Set-MsolUserLicense -UserPrincipalName $users.UserPrincipalName -RemoveLicenses "reseller-account:O365_BUSINESS_PREMIUM"

        Set-MsolUserLicense -UserPrincipalName $users.UserPrincipalName -RemoveLicenses "reseller-account:EXCHANGEDESKLESS"

        Set-MsolUserLicense -UserPrincipalName $users.UserPrincipalName -RemoveLicenses "reseller-account:O365_BUSINESS_ESSENTIALS"
        }
}

Remove-Item –path "file\path\test" –recurse

它们有两个头文件UserPrincipalNameisLicensed,但我得到的错误是memberuser都是空的。

请让我知道你的想法

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2018-06-06 05:03:47

当您使用Import-Csv时,它会将该信息转换为pscustomobject,并将标头作为访问您的信息的键。当您使用| Out-String时,它会将该对象转换为string,其格式基于ps1xml文件中有关pscustomobject类型的说明。

CSV:

"a","b","c"
"1","2","3"

代码:

(Import-Csv -Path .\example.csv).GetType().FullName
# => System.Management.Automation.PSCustomObject

(Import-Csv -Path .\example.csv | Out-String).GetType().FullName
# => System.String

您遇到的错误是string类型没有您试图访问的成员。

票数 4
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/50708606

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档