Webmaster 发表于 2015-12-1 11:54

适用于WIN7原版(64位)安装U盘的USB3驱动(直接解压到U盘根目...

本帖最后由 Webmaster 于 2015-12-1 11:56 编辑

适用于WIN7原版(64位)安装U盘的USB3驱动(直接解压到U盘根目录即可,支持英特尔100系列)
网盘下载:http://yunpan.cn/Oc3VLj4T5LPNUB (提取码:b9cc)

是使用了自动应答文件,包含了启用Administrator超级管理员。




也可以手动自己搞一个,去英特尔网站下载最新的USB3驱动。
8、9、100系列USB3驱动如Intel(R) USB 3.0 eXtensible Host Controller:4.0.0.36。
把驱动包的里纯驱动(\Drivers\Win7\x64),复制到U盘\drivers\usb1151(自己新建文件夹)。


7系列的USB3驱动如Intel(R) USB 3.0 eXtensible Host Controller:1.0.10.255
把驱动包的里纯驱动(\Drivers\Win7\x64),复制到U盘\drivers\usb1155(自己新建文件夹)。



打开记事本输入如下内容,保存为AutoUnattend.xml放到U盘根目录。

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="offlineServicing">
      <component name="Microsoft-Windows-PnpCustomizationsNonWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <DriverPaths>
                <PathAndCredentials wcm:action="add" wcm:keyValue="3">
                  <Path>%configsetroot%\drivers\usb1151</Path>
                </PathAndCredentials>
                <PathAndCredentials wcm:action="add" wcm:keyValue="4">
                  <Path>%configsetroot%\drivers\usb1155</Path>
                </PathAndCredentials>
            </DriverPaths>
      </component>
    </settings>
    <settings pass="windowsPE">
      <component name="Microsoft-Windows-PnpCustomizationsWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <DriverPaths>
                <PathAndCredentials wcm:action="add" wcm:keyValue="1">
                  <Path>%configsetroot%\drivers\usb1151</Path>
                </PathAndCredentials>
                <PathAndCredentials wcm:action="add" wcm:keyValue="2">
                  <Path>%configsetroot%\drivers\usb1155</Path>
                </PathAndCredentials>
            </DriverPaths>
      </component>
    </settings>
    <settings pass="auditSystem">
      <component name="Microsoft-Windows-PnpCustomizationsNonWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <DriverPaths>
                <PathAndCredentials wcm:action="add" wcm:keyValue="5">
                  <Path>%configsetroot%\drivers\usb1151</Path>
                </PathAndCredentials>
                <PathAndCredentials wcm:action="add" wcm:keyValue="6">
                  <Path>%configsetroot%\drivers\usb1155</Path>
                </PathAndCredentials>
            </DriverPaths>
      </component>
    </settings>
    <settings pass="specialize">
      <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <AutoLogon>
                <Username>Administrator</Username>
                <LogonCount>5</LogonCount>
                <Enabled>true</Enabled>
            </AutoLogon>
            <CopyProfile>true</CopyProfile>
      </component>
    </settings>
    <settings pass="oobeSystem">
      <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <OOBE>
                <SkipMachineOOBE>true</SkipMachineOOBE>
            </OOBE>
      </component>
    </settings>
    <cpi:offlineImage cpi:source="wim:d:/bak/boot/sources/install.wim#Windows 7 ULTIMATE Update 15-11" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>






如果不需要启用Administrator,把以下内容删除即可。
    <settings pass="specialize">
      <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <AutoLogon>
                <Username>Administrator</Username>
                <LogonCount>5</LogonCount>
                <Enabled>true</Enabled>
            </AutoLogon>
            <CopyProfile>true</CopyProfile>
      </component>
    </settings>
    <settings pass="oobeSystem">
      <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <OOBE>
                <SkipMachineOOBE>true</SkipMachineOOBE>
            </OOBE>
      </component>
    </settings>



搞不好是烧碱 发表于 2015-12-1 21:57

谢啦,这么辛苦
页: [1]
查看完整版本: 适用于WIN7原版(64位)安装U盘的USB3驱动(直接解压到U盘根目...