0

我使用 powershell 调用 sql 存储过程,现在我想将完整的输出集重定向到 .ps1 文件中,因为输出行在 powershell 中是可执行的。

我正在尝试使用 >output.ps1,它可以工作,但我正在检查输出文件,它包含很多“...”来替换实际输出。

如何导出完整的输出?还把标题去掉?

谢谢。

4

1 回答 1

0

这取决于您如何调用存储过程。如果您在 PowerShell 中调用它,您应该能够收集输出,所以我假设您将它作为一个单独的任务启动它自己的窗口。如果没有您的实际示例,这是一种从 tasklist.exe 命令收集输出的方法。您可能会发现它适用。

cls
$exe = 'c:\Windows\System32\tasklist.exe'
$processArgs = '/NH'
try {
    Write-Host ("Launching '$exe $processArgs'")
    $info = New-Object System.Diagnostics.ProcessStartInfo
    $info.UseShellExecute = $false 
    $info.RedirectStandardError = $true 
    $info.RedirectStandardOutput = $true 
    $info.RedirectStandardInput = $true 
    $info.WindowStyle = [System.Diagnostics.ProcessWindowStyle]::Hidden
    $info.CreateNoWindow = $true
    $info.ErrorDialog = $false
    $info.WorkingDirectory = $workingDir
    $info.Filename = $exe
    $info.Arguments = $processArgs

    $process = [System.Diagnostics.Process]::Start($info)
    Write-Host ("Launched $($process.Id) at $(Get-Date)")
    <# 
    $process.StandardOutput.ReadToEnd() is a synchronous read. You cannot sync read both output and error streams. 
    $process.BeginOutputReadLine() is an async read. You can do as many of these as you'd like. 
    Either way, you must finish reading before calling $process.WaitForExit()
    http://msdn.microsoft.com/en-us/library/system.diagnostics.processstartinfo.redirectstandardoutput.aspx
    #>

    $output = $process.StandardOutput.ReadToEnd()

    $process.WaitForExit() | Out-Null 

    Write-Host ("Exited at $(Get-Date)`n$output")

} catch {
    Write-Host ("Failed to launch '$exe $processArgs'")
    Write-Host ("Failure due to $_")
}
$output
于 2013-01-18T20:03:10.473 回答