装机吧 - 系统装机大师 最简单易用的系统重装工具,让我们一起装机吧!支持 Windows XP、7、8、 10 原版镜像安装。支持 U 盘 PE 制作、PE 联网等多种功能选择。
  • 立即下载
  • 已下载:1000000+
    版本:12.6.48.1900 | 大小:31MB
当前位置:首页 > win8

PE下装SCSI驱动

分类:win8    发布时间: 2013年03月25日 00:00:00

【SCSI驱动】通常情况下在pe系统下安装硬盘驱动器都是失败的,原因是使用DEVCON类。那么SCSI驱动可不可以使用类似的方法进行操作呢,实施证明是可以的。
 

SCSI驱动

具体安装方法.
1把此驱动的SYS文件移动到DRIVERS目录,其它文件则移动到(不需要INF文件)SYSTEM32。
2然后把SYS文件设为服务并启动。
3好了,如果服务正常启动,那系统中就会显示出你的SCSI硬盘。

@echo off
1 title 在PE下安装硬盘控制器驱动简单脚本 by chenall 2008-12-14
2 rem 使用方法: 1.可直接拖放,即把对应驱动的SYS文件拖放到这个程序的图标上.
3 rem  2.使用命令行pe_scsi.cmd [你的SYS文件]
4 rem ....http://www.366840202.cn................http://bbs.wuyou.com
5 rem ...
6 if "%1"=="" goto :eof
7 >"%temp%\scsi_serv.inf" echo.
8 >>"%temp%\scsi_serv.inf" echo.[Version]
9 >>"%temp%\scsi_serv.inf" echo.signature = "$Windows NT$"
10 >>"%temp%\scsi_serv.inf" echo.[DefaultInstall.Services]
11 >>"%temp%\scsi_serv.inf" echo.AddService = %~n1,,Service
12 >>"%temp%\scsi_serv.inf" echo.[Service]
13 >>"%temp%\scsi_serv.inf" echo.DisplayName = "%~n1 Service"
14 >>"%temp%\scsi_serv.inf" echo.Description = "%~1"
15 >>"%temp%\scsi_serv.inf" echo.ServiceType = 2
16 >>"%temp%\scsi_serv.inf" echo.StartType = 2
17 >>"%temp%\scsi_serv.inf" echo.ErrorControl = 1
18 >>"%temp%\scsi_serv.inf" echo.ServiceBinary = %%12%%\%~nx1
19 copy /y %1 %WinDir%\system32\drivers >nul
20 rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %temp%\scsi_serv.inf
21 if not errorlevel 1 (echo.%~nX1驱动安装成功!&pecmd serv %~n1&pause) else (echo.安装失败!&pause)
22 del /f /q "%temp%\scsi_serv.inf"
这样我们SCSI驱动就安装好了。

推荐阅读:pe系统是什么:http://www.kkzj.com/

责任编辑:装机吧小鱼     版权所有,转载请说明出处!


 

栏目:win8 阅读:0 2019/05/31
栏目:win8 阅读:0 2018/05/14