如何用power shell覆盖文件内容

时间:2018-01-12 00:26:41

标签: powershell-v2.0

我是PowerShell的新手。你如何在powershell中写文件?现在写下代码正在追加。我想用以下新信息完全覆盖文件。

$ someinfo |添加内容$ FileName

2 个答案:

答案 0 :(得分:1)

使用Set-Content代替Add-Content

Set-ContentAdd-Content之间的差异:
Add-Content =>附加
Set-Content =>替换内容

<强>参考:
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/set-content?view=powershell-5.1

答案 1 :(得分:1)

您也可以Out-File

'Some content' | Out-File -FilePath c:\windows\temp\file.log