Proper study guides for Regenerate Microsoft Implementing Microsoft Azure Infrastructure Solutions certified begins with Microsoft 70 533 dumps preparation products which designed to deliver the Real 70 533 azure questions by making you pass the azure 70 533 test at your first time. Try the free 70 533 exam dumps pdf demo right now.

Q21. You administer a Windows Server virtual machine (VM). 

You upload the VM to Azure. 

You need to ensure that you are able to deploy the BGInfo and VMAccess extensions. 

What should you do? 

A. Select the Install the VM Agent checkbox while provisioning a VM based on your uploaded VHD. 

B. Select the Enable the VM Extensions checkbox while provisioning a VM based on your uploaded VHD. 

C. Install the VM Agent MSI and execute the following Power Shell commands: $vm = Get-AzureVM -serviceName $svc -Name $name $vm.VM.ProvisionGuestAgent = $true Update-AzureVM -Name Sname -VM $vm.VM -ServiceName $svc 

D. Install the VM Agent MSI and execute the following Power Shell commands: $vm = Get-AzureVM -serviceName $svc -Name $name Set-AzureVMBGInfoExtension -VM $vm.VM Set-AzureVM Access Extension -VM $vm.VM Update-AzureVM -Name Sname -VM $vm.VM -ServiceName $svc 

Answer:

Explanation: The VM Agent can be enabled by manually downloading and installing the VM Agent (either the Windows or Linux version) on an existing VM instance and then setting the ProvisionGuestAgent value to true using Powershell or a REST call. (If you do not set this value after manually installing the VM Agent, the addition of the VM Agent is not detected properly.) The following code example shows how to do this using PowerShell where the $svc and $name arguments have already been determined. 

$vm = Get-AzureVM –serviceName $svc –Name $name $vm.VM.ProvisionGuestAgent = $TRUE Update-AzureVM –Name $name –VM $vm.VM –ServiceName $svc 

Reference: VM Agent and VM Extensions Overview 


Q22. You manage a web application published to Azure Cloud Services. 

Your service level agreement (SLA) requires that you are notified in the event of poor performance from customer locations in the US, Asia, and Europe. 

You need to configure the Azure Management Portal to notify you when the SLA performance targets are not met. 

What should you do? 

A. Create an alert rule to monitor web endpoints. 

B. Create a Notification Hub alert with response time metrics. 

C. Add an endpoint monitor and alert rule to the Notification Hub. 

D. Configure the performance counter on the cloud service. 

Answer:

Explanation: * An alert rule enables you to monitor an available metric within a supported Azure service. When the value of a specified metric violates the threshold assigned for a rule, the alert rule becomes active and registers an alert. When you create an alert rule, you can select options to send an email notification to the service administrator and co-administrators, or another administrator, when the rule becomes active, and when an alert condition is resolved. 

* You can configure cloud service alert rules on: 

Web endpoint status metrics Monitoring metrics from the cloud service host operating system Performance counters collected from the cloud service guest virtual machine 

: Understanding Monitoring Alerts and Notifications in Azure 

URL: http://msdn.microsoft.com/en-us/library/azure/dn306639.aspx 


Q23. You administer a Microsoft Azure SQL Database database in the US Central region named contosodb. Contosodb runs on a Standard tier within the SI performance level. 

You have multiple business-critical applications that use contosodb. 

You need to ensure that you can bring contosodb back online in the event of a natural disaster in the US Central region. You want to achieve this goal with the least amount of downtime. 

Which two actions should you perform? Each correct answer presents part of the solution. 

A. Upgrade to S2 performance level. 

B. Use active geo-replication. 

C. Use automated Export. 

D. Upgrade to Premium tier. 

E. Use point in time restore. 

F. Downgrade to Basic tier. 

Answer: B,D 

Explanation: B: The Active Geo-Replication feature implements a mechanism to provide database redundancy within the same Microsoft Azure region or in different regions (geo-redundancy). One of the primary benefits of Active Geo-Replication is that it provides a database-level disaster recovery solution. Using Active Geo-Replication, you can configure a user database in the Premium service tier to replicate transactions to databases on different Microsoft Azure SQL Database servers within the same or different regions. Cross-region redundancy enables applications to recover from a permanent loss of a datacenter caused by natural disasters, catastrophic human errors, or malicious acts. 

D: Active Geo-Replication is available for databases in the Premium service tier only. 

Reference: Active Geo-Replication for Azure SQL Database 

http://msdn.microsoft.com/en-us/library/azure/dn741339.aspx 


Q24. HOTSPOT 

You manage two cloud services named Service1 and Service2. The development team updates the code for each application and notifies you that the services are packaged and ready for deployment. 

Each cloud service has specific requirements for deployment according to the following table. 

In the table below, identify the deployment method for each service. Make only one selection in each column. 

Answer: 


Q25. DRAG DROP 

You administer an Azure Web Site named contosoweb that uses a production database. You deploy changes to contosoweb from a deployment slot named contosoweb-staging. 

You discover issues in contosoweb that are affecting customer data. 

You need to resolve the issues in contosoweb while ensuring minimum downtime for users. You swap contosoweb to contosoweb-staging. 

Which four steps should you perform next in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order. 

Answer: 


Q26. You manage a software-as-a-service application named SaasApp1 that provides user management features in a multi-directory environment. 

You plan to offer SaasApp1 to other organizations that use Azure Active Directory. 

You need to ensure that SaasApp1 can access directory objects. 

What should you do? 

A. Configure the Federation Metadata URL 

B. Register SaasApp1 as a native client application. 

C. Register SaasApp1 as a web application. 

D. Configure the Graph API. 

Answer:

Explanation: The Azure Active Directory Graph API provides programmatic access to Azure AD through REST API endpoints. Applications can use the Graph API to perform create, read, update, and delete (CRUD) operations on directory data and objects. For example, the Graph API supports the following common operations for a user object: / Create a new user in a directory / Get a user’s detailed properties, such as their groups / Update a user’s properties, such as their location and phone number, or change their password / Check a user’s group membership for role-based access / Disable a user’s account or delete it entirely 

Reference: Azure AD Graph API 

URL: http://msdn.microsoft.com/en-us/library/azure/hh974476.aspx 


Q27. You manage several Azure virtual machines (VMs). You create a custom image to be used by employees on the development team. 

You need to ensure that the custom image is available when you deploy new servers. 

Which Azure Power Shell cmdlet should you use? 

A. Update-AzureVMImage 

B. Add-AzureVhd 

C. Add-AzureVMImage 

D. Update-AzureDisk 

E. Add-AzureDataDisk 

Answer:

Explanation: The Add-AzureVMImage cmdlet adds an operating system image to the 

image repository. The image should be a generalized operating system image, using either 

Sysprep for Windows or, for Linux, using the appropriate tool for the distribution. 

Example 

This example adds an operating system image to the repository. 

Windows PowerShell 

C:\PS>Add-AzureVMImage -ImageName imageName -MediaLocation 

http://yourstorageaccount.blob.core.azure.com/container/sampleImage.vhd -Label 

Reference: Add-AzureVMImage 


Q28. 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.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. 

Answer: C,D 

Explanation: * There are two main traffic flows originating from the server hosting the Azure Active Directory Sync tool: The Azure Active Directory Sync tool queries a domain controller on the on-premises network for changes to accounts and passwords. The Azure Active Directory Sync tool sends the changes to accounts and passwords to the Azure AD instance of your Office 365 subscription. These changes are sent through the on-premises network’s proxy server. 

* Verify that your virtual machine is joined to the domain by checking your internal DNS to make sure that an Address (A) record was added for the virtual machine with the correct IP address from Azure. For the Azure Active Directory Sync tool to gain access to Internet resources, you must configure the server that runs the Azure Active Directory Sync tool to use the on-premises network's proxy server. 

Reference: Deploy Office 365 Directory Synchronization in Microsoft Azure 


Q29. You manage an Azure Web Site named contosoweb. Logging is enabled for contosoweb. 

You need to view only errors from your log files in a continuous stream as they occur. 

Which Windows Power Shell command should you execute? 

A. Get-AzureWebSiteLog -Name contosoweb -OutBuffer Error 

B. Save-AzureWebSiteLog -Name contosoweb -Output Errors 

C. Get-AzureWebSiteLog -Name contosoweb -Tail –Message Error 

D. Get-Azure WebSiteLog -Name contosoweb -Message Error 

Answer:

Explanation: Example 

This example starts log streaming and show error logs only. 

Windows PowerShell 

C:\PS>Get-AzureWebsiteLog -Tail -Message Error 

Reference: Get-AzureWebsiteLog 

URL: http://msdn.microsoft.com/en-us/library/dn495187.aspx 


Q30. DRAG DROP 

You manage an Azure Web Site named contososite. 

You download the subscription publishing credentials named Contoso-Enterprise.publishsettings. 

You need to use Azure Power Shell to achieve the following: 

Connect to the Contoso-Enterprise subscription. 

Create a new App Setting named CustomSetting with a value of True. 

Restart the website. 

Which commands should you use? To answer, drag the appropriate Azure PowerShell command to the correct location in the solution. Each command may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. 

Answer: