240

我有一个 PowerShell 脚本,我想将其输出重定向到一个文件。问题是我无法更改调用此脚本的方式。所以我不能这样做:

 .\MyScript.ps1 > output.txt

如何在执行期间重定向 PowerShell 脚本的输出?

4

10 回答 10

229

也许Start-Transcript会为你工作。如果它已经在运行,首先停止它,然后启动它,完成后停止它。

$ErrorActionPreference="静默继续"
停止成绩单 | 外空
$ErrorActionPreference = "继续"
Start-Transcript -path C:\output.txt -append
# 做一些事情
停止成绩单

您也可以在处理内容时运行它,并让它保存您的命令行会话以供以后参考。

如果您想在尝试停止未转录的成绩单时完全抑制错误,您可以这样做:

$ErrorActionPreference="SilentlyContinue"
Stop-Transcript | out-null
$ErrorActionPreference = "Continue" # or "Stop"
于 2009-07-31T23:51:17.183 回答
59

Microsoft在 Powershell 的 Connections 网站上宣布(2012 年 2 月 15 日下午 4:40),他们在 3.0 版中扩展了重定向作为解决此问题的方法。

In PowerShell 3.0, we've extended output redirection to include the following streams: 
 Pipeline (1) 
 Error    (2) 
 Warning  (3) 
 Verbose  (4) 
 Debug    (5)
 All      (*)

We still use the same operators
 >    Redirect to a file and replace contents
 >>   Redirect to a file and append to existing content
 >&1  Merge with pipeline output

有关详细信息和示例,请参阅“about_Redirection”帮助文章。

help about_Redirection
于 2010-05-26T20:10:32.710 回答
52

利用:

Write "Stuff to write" | Out-File Outputfile.txt -Append
于 2012-11-05T17:24:04.317 回答
38

我认为你可以修改MyScript.ps1. 然后尝试像这样更改它:

$(
    Here is your current script
) *>&1 > output.txt

我刚刚使用 PowerShell 3 进行了尝试。您可以使用Nathan Hartley 的回答中的所有重定向选项。

于 2016-04-11T15:31:50.723 回答
29
powershell ".\MyScript.ps1" > test.log
于 2017-02-04T01:40:10.660 回答
25

如果您的情况允许,一种可能的解决方案:

  1. 将 MyScript.ps1 重命名为 TheRealMyScript.ps1
  2. 创建一个新的 MyScript.ps1,如下所示:

    .\TheRealMyScript.ps1 > output.txt

于 2009-07-31T23:39:36.083 回答
23

如果要将所有输出直接重定向到文件,请尝试使用*>>

# You'll receive standard output for the first command, and an error from the second command.
mkdir c:\temp -force *>> c:\my.log ;
mkdir c:\temp *>> c:\my.log ;

由于这是对文件的直接重定向,因此不会输出到控制台(通常很有帮助)。如果您需要控制台输出,请将所有输出与 合并*&>1,然后使用管道Tee-Object

mkdir c:\temp -force *>&1 | Tee-Object -Append -FilePath c:\my.log ;
mkdir c:\temp *>&1 | Tee-Object -Append -FilePath c:\my.log ;

# Shorter aliased version
mkdir c:\temp *>&1 | tee -Append c:\my.log ;

我相信 PowerShell 3.0 或更高版本支持这些技术;我正在 PowerShell 5.0 上进行测试。

于 2016-12-14T17:38:46.347 回答
17

您可能想查看 cmdlet Tee-Object。您可以将输出通过管道传输到 Tee,它将写入管道以及文件

于 2009-08-02T17:36:48.337 回答
9

如果您想从命令行执行它而不是内置到脚本本身中,请使用:

.\myscript.ps1 | Out-File c:\output.csv
于 2014-10-15T09:08:26.450 回答
0

要将其嵌入到您的脚本中,您可以这样做:

        Write-Output $server.name | Out-File '(Your Path)\Servers.txt' -Append

这应该够了吧。

于 2015-03-20T17:30:00.560 回答