Question : You are working on a website named QuickTechie.com , which is hosted on Azure . Now you created a job which erase the logs. Name of the the job is EraseLogs.cmd EraseLogs.cmd will be executed manually, twice or thrice a week. Now wanted to deploy this JOb. Select the correct folder in which this jobs needs to be deployed. 1. ./App_Code/jobs/triggered/cleanLogs/EraseLogs.cmd
Correct Answer : Get Lastest Questions and Answer : Explanation: Where is your WebJobs stored? 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).
And {job name} is your WebJob's name.
So a continuous WebJob called myjob will be located at:
site\wwwroot\App_Data\jobs\continuous\myjob
What should be inside a WebJob directory? The WebJob directory can contain 1 to as much as you'd like files but at the least it should contain the script that starts the WebJob's process, this script can currently be: batch (.exe/.cmd/.bat), bash (.sh), javascript (.js as node.js), php (.php) or python (.py).
The script to be run is automatically detected using the following logic:
First look for a file called run.{supported extension} (first one found wins). If not found look for any file with a supported extension. If not found, this is not a runnable WebJob
Question : Your company network includes an On-Premises Windows Active Directory (AD) that has a DNS domain named contoso.local and an email domain named contoso.com. You plan to migrate from On-Premises Exchange to Office 365. You configure DirSync and set all Azure Active Directory {Azure AD) usernames as %username%@contoso.onmicrosoft.com.
You need to ensure that each user is able to log on by using the email domain as the username. Which two actions should you perform? Each correct answer presents part of the solution.
A. Verify the email domain in Azure AD domains. B. Run the Set-MsolUserPnncipalName -UserPnncipalName %username%@co ntoso.onmicrosoft.com -NewUserPrincipalName %usemame %@contoso.com Power Shell cmdlet. C. Edit the ProxyAddress attribute on the On-Premises Windows AD user account. D. Verify the Windows AD DNS domain in Azure AD domains. E. Update the On-Premises Windows AD user account UPN to match the email address. 1. A,B 2. B,C 3. Access Mostly Uused Products by 50000+ Subscribers 4. D,E 5. A,E
Correct Answer : Get Lastest Questions and Answer : Explanation: The proxy address only effect exchange and not login office 365 login accounts. The office 365 looks at UPN for credentials. This rules C out as the answer.
The user can also have multiple email address assigned to the same account, so that rules D out.
When you sign upto office 365 you verify your DNS domain. Azure needs to have the verified email domain otherwise it won't change the user to that domain.
Question : You develop a Windows Store application that has a web service backend. You plan to use the Azure Active Directory Authentication Library to authenticate users to Azure Active Directory (Azure AD) and access directory data on behalf of the user. You need to ensure that users can log in to the application by using their Azure AD credentials. Which two actions should you perform? Each correct answer presents part of the solution.
A. Create a native client application in Azure AD. B. Configure directory integration. C. Create a web application in Azure AD. D. Enable workspace join. E. Configure an Access Control namespace. 1. A,B 2. B,C 3. Access Mostly Uused Products by 50000+ Subscribers 4. D,E 5. A,E
1. It must be integrated with Azure AD 2. Its a Windows Store Application (definition of a windows store app is here http://channel9.msdn.com/Blogs/One-Dev-Minute/What-is-a-Windows-Store-app) According to https://msdn.microsoft.com/en-us/library/dn132599.aspx , the windows store application is a native client application
"On the Tell us about your application page, you must specify a name for your application as well as indicate the type of application you are registering with Azure AD. You can choose from a web application and/or web API (default) or native client application which represents an application that is installed on a device such as a phone or computer." Because question is talking about window store App which either runs on mobile or Window App