我正在编写一个bat文件,使用Azure command line初始化azure网站的Web配置。 这是命令的一个示例:
azure site config add testConfig = false
在cmd中写入此命令后,它会进行一些处理,然后询问我的网站名称,然后我必须输入这样的网站名称:
info:执行命令site config add
网站名称:MyfirstWebsite
我在bat文件中有以下说明,但它从未给我想要的结果
@echo off
echo starting program
azure site config add testConfig=false
MyfirstWebSite
我希望上面的代码执行语句然后输入网站输入名称并继续但它总是只执行语句
答案 0 :(得分:0)
试试这样:
@echo off
echo starting program
azure site config add testConfig=false
start MyfirstWebSite