zoukankan      html  css  js  c++  java
  • winserver2008 management note

    1,磁盘online及介质保护

    Windows server 2008 增加的磁盘无法初始化-提示:介质受写入保护。
    插了下相关说明,在VMware的帖子找到了解决办法:

    1. 开始-运行,cmd。打开命令提示符。
    2. 要运行 Diskpart 实用程序,请运行以下命令:
      diskpart
    3. 要获取有关每个磁盘的摘要信息,请运行以下命令:
      list disk
    4. 使用以下命令选择磁盘 1(当前脱机磁盘):
      select disk 1

      注意:此时,所有 diskpart 命令均应用于此磁盘。

    5. 使用以下命令清除磁盘 1 的只读属性:
      attributes disk clear readonly

      disk attributes cleared successfully要检查只读属性是否已清除,请运行以下命令:

      diskpart>attributes disk
      current read-only state: no
      boot disk: no
      pagefile disk: no
      hibernation file disk: no
      crashdump disk: no
      clustered disk: no
    6. 使用以下命令使磁盘 1 联机:
      online disk
  • 相关阅读:
    寻找大富翁
    C++ STL sort()函数用法
    众数
    平方因子
    Hdu 1089 A+B for Input-Output Practice (I)
    Hdu 1090 A+B for Input-Output Practice (II)
    Hdu 1083 Courses
    Hdu 1069 Monkey and Banana
    Hdu 1062 Text Reverse
    Hdu 1068 Girls and Boys
  • 原文地址:https://www.cnblogs.com/eiguleo/p/4534351.html
Copyright © 2011-2022 走看看