時間:2017-07-04 來源:互聯網 瀏覽量:
今天給大家帶來如何在PE係統內裝SCSI驅動,在PE係統內裝SCSI驅動的操作方法,讓您輕鬆解決問題。
windows係統中在PE下安裝硬盤控製器驅動很多用戶都是失敗的,因為都是使用DEVCON類。但其實SCSI驅動是也可以使用類似的方法來實現安裝的。今天小編就為你提供具體安裝方法: 1、把這個驅動的SYS文件複製到DRIVERS目錄,其它文件複製到(不需要INF文件)SYSTEM32(注:一般都隻有一個SYS文件,所以隻要把這個SYS文件複製到DRIVERS目錄就好了)。 2,把這個SYS文件設為服務並啟動。 3、如果服務正常啟動,那係統中就會顯示出你的SCSI硬盤。 附上測試效果圖,使用VMSARE測試的,附件4為下麵批處理腳本,可在PE下使用(注:測試圖為了方便,我是直接使用VCdControlTool加載的驅動,正常使用可以直接使用下麵的腳本)。 @echo off title 在PE下安裝硬盤控製器驅動簡單腳本 by chenall 2008-12-14 rem 使用方法: 1.可直接拖放,即把對應驅動的SYS文件拖放到這個程序的圖標上. rem 2.使用命令行pe_scsi.cmd [你的SYS文件] rem ....http://www.366840202.cn................http://bbs.wuyou.com rem ... if "%1"=="" goto :eof >"%temp%scsi_serv.inf" echo. >>"%temp%scsi_serv.inf" echo.[Version] >>"%temp%scsi_serv.inf" echo.signature = "$Windows NT$" >>"%temp%scsi_serv.inf" echo.[DefaultInstall.Services] >>"%temp%scsi_serv.inf" echo.AddService = %~n1,,Service >>"%temp%scsi_serv.inf" echo.[Service] >>"%temp%scsi_serv.inf" echo.DisplayName = "%~n1 Service" >>"%temp%scsi_serv.inf" echo.Description = "%~1" >>"%temp%scsi_serv.inf" echo.ServiceType = 2 >>"%temp%scsi_serv.inf" echo.StartType = 2 >>"%temp%scsi_serv.inf" echo.ErrorControl = 1 >>"%temp%scsi_serv.inf" echo.ServiceBinary = %%12%%\%~nx1 copy /y %1 %WinDir%system32drivers >nul rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %temp%scsi_serv.inf if not errorlevel 1 (echo.%~nX1驅動安裝成功!&pecmd serv %~n1&pause) else (echo.安裝失敗!&pause) del /f /q "%temp%scsi_serv.inf"以上就是如何在PE係統內裝SCSI驅動,在PE係統內裝SCSI驅動的操作方法教程,希望本文中能幫您解決問題。