脚本输出将在控制台以及Export-Csv上运行

时间:2015-12-15 15:42:52

标签: powershell export-to-csv

我正在处理一个基本的PowerShell脚本,该脚本输入一对日期,然后获取密码在这些时间之间到期的所有帐户。我想以与Export-Csv兼容的方式将数据输出到控制台。这样,运行脚本的人可以只在控制台中查看,也可以获取文件。

这是我的剧本:

[CmdletBinding()]
param(
    [string]$StartDate = $(throw "Enter beginning date as MM/DD/YY"),
    [string]$EndDate = $(throw "Enter end date as MM/DD/YY")
)

$start = Get-Date($StartDate)
$end = Get-Date($EndDate)

$low = $start.AddDays(-150)
$high = $end.AddDays(-150)

$passusers = Get-ADUser -Filter { PasswordLastSet -gt $low -and PasswordLastSet -lt $high -and userAccountControl -ne '66048' -and userAccountControl -ne '66080' -and enabled -eq $true} -Properties PasswordLastSet,GivenName,DisplayName,mail,LastLogon | Sort-Object -Property DisplayName

$accts = @()

foreach($user in $passusers) {
    $passLastSet = [string]$user.PasswordLastSet
    $Expiration = (Get-Date($passLastSet)).addDays(150)

    $obj = New-Object System.Object
    $obj | Add-Member -MemberType NoteProperty -Name Name -Value $user.DisplayName 
    $obj | Add-Member -MemberType NoteProperty -Name Email -Value $user.mail
    $obj | Add-Member -MemberType NoteProperty -Name Expiration -Value $expiration

    $accts += $obj
}

Write-Output ($accts | Format-Table | Out-String)

这完美地打印到控制台:

Name                 Email                   Expiration
----                 -----                   ----------
Victor Demon         demonv@nsula.edu      1/3/2016 7:16:18 AM

然而,当使用| Export-Csv进行调用时,它不会:

#TYPE System.String
Length
    5388

我尝试过使用对象和数据表的多种变体,但似乎我只能让它适用于控制台或CSV,而不是两者兼而有之。

2 个答案:

答案 0 :(得分:2)

替换

Write-Output ($accts | Format-Table | Out-String)

$accts

这样您的用户就可以按照自己喜欢的方式运行脚本,例如

.\your_script.ps1 | Format-Table
.\your_script.ps1 | Format-List
.\your_script.ps1 | Export-Csv
.\your_script.ps1 | Out-GridView
...

Format-Table | Out-String将您的输出转换为单个字符串,而Export-Csv期望将对象列表作为输入(对象属性则成为CSV的列)。如果Export-Csv被输入一个字符串,则唯一的属性是Length,因此您获得一个包含一列和一条记录的CSV。

答案 1 :(得分:0)

$accts | ConvertTo-Csv | Tee -File output.csv | ConvertFrom-Csv