Monday 2 October 2017

How to add additional disk to current Azure VM

Let see how we can add additional disks:

Adding an additional disk to an Azure VM was too easy. Let's see steps below.

1. Login to the Azure Management Portal here
2. In the Azure Management portal, click VM in the list of options on the left
3. In the VM pane, click the VM you want to attach a disk to.
4. A dashboard for the VM will appear, and the VM settings panel to the left. in the settings panel, click Disks under GENERAL
5. Select attach new






















6.  Select appropriate name for Disk under Name
7. Select required type Standard or SSD
8. Provide Size required in GB
9. select location and host caching if required for your environment
10. Click OK

























11. wait for few minutes, once tasks completed you will see a notification appear on the top right of the management portal.

No comments:

Post a Comment

How to find table row count?

--Use below query to find table row count select so.name,sp.rows from sys.objects so inner join sys.partitions sp on so.object_id = sp.obj...