从批处理文件中将 powershell 输出写入文件

从批处理文件中将 powershell 输出写入文件

尝试将 powershell 输出从批处理文件中写入文件。

powershell -executionpolicy bypass -command "(get-date).addminutes(1).tostring('HH:mm')|out-file '$env:temp\newtime.txt'"

在批处理文件中不起作用,但在 powershell 窗口中直接运行良好(当然,去掉 [powershell -executionpolicy around -command])。

我想我缺少转义字符或类似的东西?

提前致谢。

相关内容