- Lab
- A Cloud Guru
Snapshot an Azure VM Disk using PowerShell
Your company has a legal requirement to keep all backups for a period of time to ensure data can be restored if needed. Your manager has asked you to take a snapshot of a disk in Azure, and make sure that you can access it. Use PowerShell to take a snapshot of the VM disk and send it to a storage account.
Path Info
Table of Contents
-
Challenge
Stop the Virtual Machine
-
Use the correct PowerShell command to stop and deallocate the VM that's provisioned with this lab.
-
In the Azure Portal, click All resources and copy the name of the pre-provisioned resource group.
-
In the Cloud Shell, create a new variable:
$rg = "<RESOURCE_GROUP_NAME>"
-
In the Azure Portal, copy the name of the VM disk and create a new variable:
$diskname = "<VIRTUAL_MACHINE_DISK_NAME>"
-
Create a variable for
sasExpiryDuration
:$sasExpiryDuration = "3600"
-
In the Azure Portal, copy the storage account name, and create a new variable:
$storageAccountName = "<STORAGE_ACCOUNT_NAME>"
-
In the Azure Portal, copy the storage account key for
key1
, and create a new variable:$storageAccountKey = "<KEY1_STORAGE_ACCOUNT_KEY>"
-
Create additional variables:
$storageContainerName = "container1" $destinationVHDFileName = "disk1.vhd" $useAzCopy = 1 $vmName = "winVM"
-
Stop the VM:
Stop-AzVM -ResourceGroupName $rg -Name $vmName
-
-
Challenge
Take a Snapshot of the VM
- Use the appropriate commands to take a snapshot of the VM.
-
- Once the VM has stopped, grant access to the disk:
$sas = Grant-AzDiskAccess -ResourceGroupName $rg -DiskName $diskName -DurationInSecond $sasExpiryDuration -Access Read
- Create an Azure Storage context:
$destinationContext = New-AzStorageContext -StorageAccountName $storageAccountName -StorageAccountKey $storageAccountKey
-
Challenge
Copy the Snapshot to Container
- Using AzCopy, send the snapshot to the
container1
within the storage account provisioned with this lab. -
- Using AzCopy, send the snapshot to
container1
:
if($useAzCopy -eq 1) { $containerSASURI = New-AzStorageContainerSASToken -Context $destinationContext -ExpiryTime(get-date).AddSeconds($sasExpiryDuration) -FullUri -Name $storageContainerName -Permission rw azcopy copy $sas.AccessSAS $containerSASURI }else{ Start-AzStorageBlobCopy -AbsoluteUri $sas.AccessSAS -DestContainer $storageContainerName -DestContext $destinationContext -DestBlob $destinationVHDFileName }
- Using AzCopy, send the snapshot to
- Using AzCopy, send the snapshot to the
What's a lab?
Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.
Provided environment for hands-on practice
We will provide the credentials and environment necessary for you to practice right within your browser.
Guided walkthrough
Follow along with the author’s guided walkthrough and build something new in your provided environment!
Did you know?
On average, you retain 75% more of your learning if you get time for practice.