Powershelll 参数等同于 cmd args

Powershelll 参数等同于 cmd args

如果我正在运行一个文件 example.exe,它在 cmd 中接受参数:

example.exe /argA=true /argB="string" /argC=confirm

我可以在 powershell 中做同样的事情吗

example.exe -argA true -argB "string" -argC confirm

如果您可以将 cmd 模式转换为 powershell 模式,那么是否有关于如何将 cmd 语法转换为 powershell 语法的指南?

相关内容