运行 nmake 在 powershell 中

Running nmake in powershell

我正在编写一个 powershell 脚本,该脚本正在调用 .ps1 到 运行 nmake 中的一个 .bat 文件,这对我来说没有意义,所以我希望移动所有内容在一个 ps 脚本中,将 nmake 添加到脚本会引发此错误 The term 'NMAKE' is not recognized as the name of a cmdlet, function, script file...。无论如何 运行 nmake 从 powershell?

如果您的可执行文件不在您的 PATH 环境变量中,请包括您的可执行文件路径。例如:

& 'Path\to\nmake.exe' /arg1 pass /arg2 in