1
我想僅在特定字符串不存在於特定文件中時才運行powershell命令。如果文件不包含字符串powershell
這是我的腳本
$pattern='<!--add key="MaxNumCycles" value="40"/-->'
$textToAdd=$pattern + '
<!--RerunMode: 1 write to DB, 2 write to DB and add to RUN export/-->
<add key="RerunMode" value="0"/>'
$filename="C\temp\Software.exe.config"
[IO.File]::ReadAllText($filename).Replace($pattern,$textToAdd) | Set-Content $filename -Force
如果$textToAdd
字符串不是那麼我想運行此腳本filename
$。我如何去做這件事?