Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在本地机器上运行 powershell 命令以在远程服务器上启动批处理文件。但是,服务器总是将批处理文件的回显输出返回到我的本地机器,这不是我想要的。我们可以在服务器上执行命令并让服务器保留输出信息吗?
提前致谢!
您是否尝试过调用命令?
Invoke-Command -ComputerName machinename -ScriptBlock {ipconfig > C:\temp.txt}