我正在尝试编写脚本以使用 MSdeploy 同步 IIS 服务器。
我尝试了所有可能的方式来运行 .exe,但有时我会收到此错误:
The term 'C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe' is
not recognized as the name of a cmdlet, function, script file, or
operable program. Check the spelling of the name, or if a path was included,
verify that the path is correct and try again.
当我第一次运行后再次执行相同的脚本时,它工作正常。这就是我最终称呼它的方式:
& 'C:\Program Files\IIS\Microsoft Web Deploy V3\msdeploy.exe' -verb:sync ...
任何想法如何防止它第一次失败?