which folder location should you deploy CleanLogs.cmd?

You administer an Azure Web Site named contoso. You create a job named
Cleanlogs.cmd that will be executed manually, twice a week. You need to deploy the job. To
which folder location should you deploy CleanLogs.cmd?

You administer an Azure Web Site named contoso. You create a job named
Cleanlogs.cmd that will be executed manually, twice a week. You need to deploy the job. To
which folder location should you deploy CleanLogs.cmd?

A.
./App_Code/jobs/triggered/cleanLogs/CleanLogs.cmd

B.
./App_Data/jobs/triggered/clean Logs/Clean Logs.cmd

C.
./App_Code/jobs/continuous/cleanLogs/CleanLogs.cmd

D.
./App_Data/jobs/continuous/cleanLogs/CleanLogs.cmd

Explanation:
http://blog.amitapple.com/post/74215124623/deploy-azurewebjobs/#.VDZam_mSx8E



Leave a Reply 17

Your email address will not be published. Required fields are marked *


Sujay

Sujay

It needs to be executed manually.
So A should be correct.

David

David

WebJobs are stored under App_Data\…\…\.. directory

Mark van Dijk

Mark van Dijk

It must be B. I guess there i a typo in the answer. Cleanlogs is without a space.

http://blog.amitapple.com/post/74215124623/deploy-azure-webjobs/

A WebJob is stored under the following directory in your site:

site\wwwroot\App_Data\jobs\{job type}\{job name}

Where {job type} can be either continuous for a job that is always running or triggered for a job that starts from an external trigger (on demand / scheduler).

TTTfreeTTT

TTTfreeTTT

Definitively,to determine the correct answer is : what we store on App_code folder?
Otherwise, as Mark Van Dijk said, the best choice is B (without space between clean logs (there was perhaps a copy paste ?)).

challenge

challenge

B is the answer

Sean

Sean

executed manually

challenge

challenge

B

“triggered” = Manual
+
./App_data/jobs/triggered

No other possible answer

john

john

ye tricky question since the name on the question is not the same name on B

But web jogs are on appdata folder and this is triggered as its invoked manually