powershell将换行符放在输出中的不适当位置

时间:2017-01-06 11:31:31

标签: powershell powershell-v4.0

我有一个PowerShell脚本,但是在继续下一行之前,某些输出会在任意点被切断。这令人非常恼火。

例如,我可以使用Write-Host,只要我愿意,该行就会继续(注意,在Team City中运行,Team City会添加一些前缀信息 - 但是可以观察到相同的效果将输出传递给文件):

[10:04:45] [Step 5/7]  - Found Windows Service at G:\TeamCityData\TeamCityBuildAgent-1\work\282b8abc9094651e\Artefacts\windows-services\WindowsService.Dummy\WindowsService.DummyService.exe

其他时候,输出似乎会在任意点人为地截断,就像它在窗口中包裹一样(不存在)。

所以,这一行:

Copy-Item -Path $fullSourcePath -Destination $destPath -Recurse -Verbose -ErrorAction Stop

在Team City中生成此输出(添加一些前缀信息):

[10:04:46] [Step 5/7] VERBOSE: Performing the operation "Copy File" on target "Item: 
[10:04:46] [Step 5/7] G:\TeamCityData\TeamCityBuildAgent-1\work\282b8abc9094651e\Artefacts\windows-services\WindowsService.Dummy\WindowsServi
[10:04:46] [Step 5/7] ce.DummyService.exe Destination: 
[10:04:46] [Step 5/7] \\SERVER001\scheduled-tasks\ProductFolder\Dev\DummyWindowsService\WindowsService.DummyService.exe".
[10:04:46] [Step 5/7] VERBOSE: Performing the operation "Copy File" on target "Item: 
[10:04:46] [Step 5/7] G:\TeamCityData\TeamCityBuildAgent-1\work\282b8abc9094651e\Artefacts\windows-services\WindowsService.Dummy\WindowsServi
[10:04:46] [Step 5/7] ce.DummyService.exe.config Destination: 
[10:04:46] [Step 5/7] \\SERVER001\scheduled-tasks\ProductFolder\Dev\DummyWindowsService\WindowsService.DummyService.exe.config".

如何阻止这种荒谬?我希望输出在行的末尾正确呈现换行符,而不是在文件名的中间。

更新

下面的评论表明这是TeamCity捕获输出的方式的问题。但是,如果我直接在PowerShell控制台中执行类似的命令并将输出传递给文件,则会出现同样的问题。

命令:

copy-item -Path F:\logs -Destination .\ -Recurse -Verbose *> F:\logs\copy-item-output-1.txt

生成如下输出:

Performing the operation "Copy File" on target "Item: F:\logs\20161103-140649-ProductName.Program.log 
Destination: F:\Destination\1234567890abcdefghijklmnopqrstuvwxyz\this-is-a-long-path-name-to-show-wrapping-issues-with-copy-it
em\logs\20161103-140649-ProductName.Program.log".

正如您所看到的,它还会跨行分割文件路径,即使它被发送到文件而不是控制台窗口。

2 个答案:

答案 0 :(得分:2)

以下解决方案(more than 10 years old so there might exist a smarter way recently?)适用于 PowerShell PowerShell ISE

$pshost = get-host
$pswindow = $pshost.ui.rawui
$newsize = $pswindow.buffersize
### do not change $newsize.height
$newsize.width = 3000               ### [int] type; max. value unknown at present
$pswindow.buffersize = $newsize

答案 1 :(得分:1)

您可以将其他流重定向到输出流,以便为详细输出和其他类型的输出提供自定义处理:

& {
    #Script code here
    Copy-Item -Path $fullSourcePath -Destination $destPath -Recurse -Verbose -ErrorAction Stop
} *>&1 | % {
    function IsStreamType {
        param($Object, $Type)
        $Property = $_.PSObject.Properties[$Type]
        $null -ne $Property -and $Property.Value -is [bool] -and $Property.Value
    }
} {
    switch(,$_) {
        {
            $_ -is [System.Management.Automation.DebugRecord] -and
            (IsStreamType $_ WriteDebugStream)
        } {
            "Debug message: $($_.Message)"
        }
        {
            $_ -is [System.Management.Automation.VerboseRecord] -and
            (IsStreamType $_ WriteVerboseStream)
        } {
            "Verbose message: $($_.Message)"
        }
        {
            $_ -is [System.Management.Automation.WarningRecord] -and
            (IsStreamType $_ WriteWarningStream)
        } {
            "Warning message: $($_.Message)"
        }
        default { ,$_ }
    }
}

我使用,$_代替普通$_作为预防措施,以防止$_恰好是集合对象时的PowerShell展开行为。