What do I do if a disk attached to a Windows BMS is in offline state?

Symptom

After a disk is attached to a Windows BMS, start Control Panel, choose System and Security > Administrative Tools, and double-click Computer Management. On the Computer Management page, choose Storage > Disk Management. The disk attached to the BMS is in Offline state.

Solution

  1. Log in to the Windows BMS.

  2. Click Start, enter cmd in Search programs and files, and press Enter to open the command-line interface (CLI).

  3. Type diskpart.
    C:\Users\Administrator>diskpart

  4. Type san.

    1. DISKPART>sanSAN
    2. Policy:Online ALL
  5. Type san policy=onlineall.

    1. DISKPART> san policy=onlineall
    2. DiskPart successfully changed the SAN policy for the current operating system
  6. Type list disk to display all disks of the BMS.

    1. DISKPART> list disk
    2. Disk ### Status Size Free Dyn Dtp
    3. Disk 0 Online 838 GB 0 B
    4. Disk 1 Offline 838 GB 838 GB
    5. Disk 2 Offline 838 GB 838 GB
    6. Disk 3 Offline 838 GB 838 GB
    7. ...
  7. Type select disk num. num indicates the disk number. Replace it with the specific disk number.

    1. DISKPART> select disk 4
  8. Type attributes disk clear readonly.

    1. DISKPART> attributes disk clear readonly
    2. Disk Part succeed to clear disk attributes
  9. Type online disk.
    1. DISKPART> online disk
    2. DiskPart succeed to make the selected disk online
  10. After the modification, format the disk.