Valid 70-535 Dumps shared by ExamDiscuss.com for Helping Passing 70-535 Exam! ExamDiscuss.com now offer the newest 70-535 exam dumps, the ExamDiscuss.com 70-535 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 70-535 dumps with Test Engine here:
Note: This question is part of a series of questions that present the same scenario. Each question on the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You manage an Azure SQL Database. The database has weekly backups that are stored in an Azure Recovery Services vault. A company deploys Microsoft SQL Server on an Azure Standard_DS3 virtual machine (VM). You need to modify the disk caching policy. Which Azure PowerShell cmdlet should you run?
Correct Answer: B
Explanation/Reference: Explanation: Example 1: Modify the caching mode of a data disk PS C:\> $VM = Get-AzureRMVM -ResourceGroupName "ResourceGroup11" -VMName "ContosoVM07" PS C:\> Set-AzureRmVMDataDisk -VM $VM -Name "DataDisk01" -Caching ReadWrite | Update- AzureRmVM The first command gets the virtual machine named ContosoVM07 by using Get-AzureRmVM. The command stores it in the $VM variable. The second command modifies the caching mode for the data disk named DataDisk01 on the virtual machine in $VM. The command passes the result to the Update- AzureRmVM cmdlet, which implements your changes. A change to the cashing mode causes the virtual machine to restart. References: https://docs.microsoft.com/en-us/powershell/module/azurerm.compute/set- azurermvmdatadisk?view=azurermps-6.6.0