Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.
  • Labs icon Lab
  • A Cloud Guru
Azure icon
Labs

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.

Azure icon
Labs

Path Info

Level
Clock icon Beginner
Duration
Clock icon 30m
Published
Clock icon Oct 09, 2020

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Table of Contents

  1. Challenge

    Stop the Virtual Machine

    1. Use the correct PowerShell command to stop and deallocate the VM that's provisioned with this lab.

    2. In the Azure Portal, click All resources and copy the name of the pre-provisioned resource group.

    3. In the Cloud Shell, create a new variable:

      $rg = "<RESOURCE_GROUP_NAME>"
      
    4. In the Azure Portal, copy the name of the VM disk and create a new variable:

      $diskname = "<VIRTUAL_MACHINE_DISK_NAME>"
      
    5. Create a variable for sasExpiryDuration:

      $sasExpiryDuration = "3600"
      
    6. In the Azure Portal, copy the storage account name, and create a new variable:

      $storageAccountName = "<STORAGE_ACCOUNT_NAME>"
      
    7. In the Azure Portal, copy the storage account key for key1, and create a new variable:

      $storageAccountKey = "<KEY1_STORAGE_ACCOUNT_KEY>"
      
    8. Create additional variables:

      $storageContainerName = "container1"
      $destinationVHDFileName = "disk1.vhd"
      $useAzCopy = 1
      $vmName = "winVM"
      
    9. Stop the VM:

      Stop-AzVM -ResourceGroupName $rg -Name $vmName
      
  2. Challenge

    Take a Snapshot of the VM

    1. Use the appropriate commands to take a snapshot of the VM.
      1. Once the VM has stopped, grant access to the disk:
      $sas = Grant-AzDiskAccess -ResourceGroupName $rg -DiskName $diskName -DurationInSecond $sasExpiryDuration -Access Read
      
    2. Create an Azure Storage context:
      $destinationContext = New-AzStorageContext -StorageAccountName $storageAccountName -StorageAccountKey $storageAccountKey
      
  3. Challenge

    Copy the Snapshot to Container

    1. Using AzCopy, send the snapshot to the container1 within the storage account provisioned with this lab.
      1. 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
      }
      

The Cloud Content team comprises subject matter experts hyper focused on services offered by the leading cloud vendors (AWS, GCP, and Azure), as well as cloud-related technologies such as Linux and DevOps. The team is thrilled to share their knowledge to help you build modern tech solutions from the ground up, secure and optimize your environments, and so much more!

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.

Start learning by doing today

View Plans