将命令(即输入不输出)写入文件

时间:2014-09-25 22:19:22

标签: powershell

Out-File让我们将输出写入文件。如果我们想要将输入写入文件怎么办?

我想要一个在PowerShell会话期间编写的所有命令的列表。该文件应如下所示:

dir
cd
ni myFile.txt -t file
cd.. 

我们希望跟踪我们在PowerShell中使用的命令。

2 个答案:

答案 0 :(得分:2)

试试这个:

Get-History |
 select -ExpandProperty commandline |
 Add-Content commandhistory.txt

答案 1 :(得分:1)

您可以使用Start-TranscriptStop-Transcript

Technet关于每个命令的链接:start-transcriptstop-transcript

用法示例:Start-Transcript -Path C:\Folder\Transcript.txt