Windows – 通过PowerShell运行.cmd文件

前端之家收集整理的这篇文章主要介绍了Windows – 通过PowerShell运行.cmd文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在PowerShell的远程服务器上运行一个.cmd文件.

在我的ps1脚本中,我已经尝试过:

C:\MyDirectory\MyCommand.cmd

导致此错误

C:\MyDirectory\MyCommand.cmd is not recognized as the name of a cmdlet,function,script file,or operable program.

和这个

Invoke-Command C:\MyDirectory\MyCommand.cmd

导致此错误

Invoke-Command : Parameter set cannot be resolved using the specified named 
parameters.

我不需要将任何参数传递给powershell脚本.我正在寻找什么正确的语法?

invoke-item将查找文件类型的默认处理程序,并告诉它运行它.在资源管理器中双击文件或使用start.exe基本相同.
原文链接:https://www.f2er.com/windows/371612.html

猜你在找的Windows相关文章