0

I am writing a bat file to initialize web configuration for azure website using Azure command line. here is an example of the command:

azure site config add testConfig=false

after writing this command in cmd, It will do some processing and then ask me for website name and then I have to enter the website name like this:

info: Executing command site config add

Web site name: MyfirstWebsite

I have the following instructions in bat file but it never gives me the wanted result

@echo off
echo starting program
azure site config add testConfig=false
MyfirstWebSite

I want the code above to execute the statement and then enter website enter name and continue but It always just execute the statement

Mohamed Naguib
  • 1,720
  • 6
  • 23
  • 32

1 Answers1

0

Try like this :

@echo off
echo starting program
azure site config add testConfig=false
start MyfirstWebSite
SachaDee
  • 9,245
  • 3
  • 23
  • 33