每当我在Windows CMD的Azure cli中执行以下命令时,我都会在Windows CMD"stat: path too long for Windows"
中收到此错误。
az group deployment create -g "testacsengine" --template-file azuredeploy.json --parameters @azuredeploy.parameters.json
在Windows中,如果您已经安装了Azure CLI模型,则可以在CMD或Windows PowerShell ISE中执行CLI命令。
对于 Azure 模板的部署,只需使用模板目录中的命令az group deployment create -g "charlesTest" --template-file template.json
。
或者像这样使用绝对路径az group deployment create -g "charlesTest" --template-file D:template.json
.当然,您需要首先使用命令az login
进行身份验证。
如果在执行此操作时仍然收到错误,则错误必须位于模板中。您应该正确检查模板。
有关模板部署的更多详细信息,请参阅az group deployment create
。