This is the process I use to add Replay/Clone of SAN disk for recovery. This is only works if the SAN allows writing to your Replay/Clone.
- Right click on computer and goto Disk Management
- Right Click on Disk Management and Rescan Disks
- Right click on the Disk and goto properties
- Find Disk by LUN and Target ID

- Right Click on the volume and Change Drive Letter and Paths
- Click and assign drive letter
- Open Command line (CMD)
- type 'diskpart'
- type 'list vol'
- find your volume by drive letter

- type 'select vol #' (replace # with Volume number)
- type 'attrib vol clear readonly' (Allows disk to)
- Go back to disk management and right click on the volume and Change Drive Letter and Paths
- Click Remove on the drive letter and Click OK
- right click on the volume and Change Drive Letter and Paths
- Click Add and add your drive letter again
- Disk should be have write access
Error: The operation did not complete
Answer: Most likely ISCSI mappings or Disk must be removed and added again.

2 comments:
DISKPART> select vol 1
Volume 1 is the selected volume.
DISKPART> attrib vol clear readonly
DiskPart has encountered an error: The media is write protected.
See the System Event Log for more information.
so it doesnt work...
The SAN I was working if only marked the volume as read only. You might want to check your disk level attributes.
diskpart
select disk X
attrib disk
You should see some results like below (my test disk was boot disk)
Current Read-only State : No
Read-only : No
Boot Disk : Yes
Pagefile Disk : Yes
Hibernation File Disk : No
Crashdump Disk : Yes
Clustered Disk : No
if your disk is set to ready only use the similar command for volume on your disk.
attrib disk clear readonly
I hope this helps
Post a Comment