zoukankan      html  css  js  c++  java
  • 【转载】使用Azure SDK 1.6 ,VM Role里加载Azure Drive方案

    使用Azure SDK 1.6 ,在Web Role和Worker Role里加载Azure Drive没问题。但是在VM Role里加载会出现以下错误:

    CloudDriveException 0x80070103 When Using Windows Azure Drive from a VM Role


    和微软的Andrew Edwards 讨论,发现是驱动的问题,需要手动安装驱动。

    The workaround for this issue has been published to MSDN: http://msdn.microsoft.com/en-us/library/windowsazure/hh708321.aspx


    1. On the virtual machine, navigate to C:\Program Files\Windows Azure Integration Components\v1.6\AzureStorageDrive\

    2. Open the wadrive.inf file in text editor.

    3. Replace the one occurrence of %ARCH% with the five characters amd64.

    4. Replace the one occurrence of the six characters $ARCH$ with the five characters amd64.

    5. Locate the CatalogFile entry that references the wadrive.cat file:

      CatalogFile=wadrive.cat

      After the CatalogFile entry, add the line:

      DriverVer=06/21/2006,6.0.6002.18464

    6. Save the modified file, replacing the original wadrive.inf file.

    1. On the virtual machine, open to the device manager. Click Start, right click Computer, and clickManage. This opens the Server Manager.

    2. In the left navigation pane, expand Diagnostics and click Device Manager.

    3. Right-click the top node in the details pane. Click Add legacy hardware.

    4. The Welcome to the Add Hardware Wizard opens.

      Add hardware wizard first screen
    5. Click Next, select Install the hardware that I manually select from a list (Advanced), and clickNext.

    6. Click Show All Devices and click Next. A dialog on which you are instructed select the device driver you want to install opens.

      Add hardware, select hardware to install
    7. Click Have Disk…. In Copy manufacturer’s files from: type the path to the wadrive.inf file.

      C:\Program Files\Windows Azure Integration Components\v1.6\AzureStorageDrive

    8. Click OK. The Add Hardware dialog opens with WA Drive Miniport driver highlighted.

      Add hardare select WA Driver Miniport
    9. Click Next and click Next on the following dialog. The Windows Security dialog opens to verify the driver installation.

      Add hardware Windows Security dialong
    10. Click Install and click Finish.

    原文:

    http://blog.csdn.net/lihonggen0/article/details/7419598 

  • 相关阅读:
    JDK+Jmeter 环境搭建
    APP自动化中三大定位工具
    APP自动化环境配置
    pytest生成allure报告
    pytest怎么标记用例?
    pytest中怎么实现参数化?
    pytest中怎么引用前置中的变量
    pytest_前置后置
    toast文本提示信息元素获取
    js处理日历
  • 原文地址:https://www.cnblogs.com/dlbrant/p/2430039.html
Copyright © 2011-2022 走看看