Add windows driver files
This commit is contained in:
parent
c7603f54c4
commit
e25d7347c6
BIN
EisMultiplexerWinDriver/7ZDP_LZMA.sfx
Executable file
BIN
EisMultiplexerWinDriver/7ZDP_LZMA.sfx
Executable file
Binary file not shown.
6
EisMultiplexerWinDriver/7zDP_LZMA.cfg
Executable file
6
EisMultiplexerWinDriver/7zDP_LZMA.cfg
Executable file
|
@ -0,0 +1,6 @@
|
|||
;!@Install@!UTF-8!
|
||||
RunProgram="dpscat.exe"
|
||||
RunProgram="x86:dpinst32.exe"
|
||||
RunProgram="x64:dpinst64.exe"
|
||||
GUIMode="2"
|
||||
;!@InstallEnd@!
|
BIN
EisMultiplexerWinDriver/7za.exe
Executable file
BIN
EisMultiplexerWinDriver/7za.exe
Executable file
Binary file not shown.
BIN
EisMultiplexerWinDriver/EisMultiplexerWinDriver.inf
Executable file
BIN
EisMultiplexerWinDriver/EisMultiplexerWinDriver.inf
Executable file
Binary file not shown.
BIN
EisMultiplexerWinDriver/InstallDriver.exe
Executable file
BIN
EisMultiplexerWinDriver/InstallDriver.exe
Executable file
Binary file not shown.
BIN
EisMultiplexerWinDriver/_DriverFiles.7z
Executable file
BIN
EisMultiplexerWinDriver/_DriverFiles.7z
Executable file
Binary file not shown.
BIN
EisMultiplexerWinDriver/amd64/WdfCoInstaller01009.dll
Executable file
BIN
EisMultiplexerWinDriver/amd64/WdfCoInstaller01009.dll
Executable file
Binary file not shown.
BIN
EisMultiplexerWinDriver/amd64/libusbK.dll
Executable file
BIN
EisMultiplexerWinDriver/amd64/libusbK.dll
Executable file
Binary file not shown.
BIN
EisMultiplexerWinDriver/amd64/winusbcoinstaller2.dll
Executable file
BIN
EisMultiplexerWinDriver/amd64/winusbcoinstaller2.dll
Executable file
Binary file not shown.
19
EisMultiplexerWinDriver/dpinst.xml
Executable file
19
EisMultiplexerWinDriver/dpinst.xml
Executable file
|
@ -0,0 +1,19 @@
|
|||
<!--
|
||||
Summary of the DPInst XML Elements:
|
||||
http://msdn.microsoft.com/en-us/library/windows/hardware/ff553383%28v=vs.85%29.aspx
|
||||
|
||||
Enabling Language Customization:
|
||||
http://msdn.microsoft.com/en-us/library/windows/hardware/ff544886%28v=vs.85%29.aspx
|
||||
|
||||
Customizing the Items That Appear on the Wizard Pages:
|
||||
http://msdn.microsoft.com/en-us/library/windows/hardware/ff540265%28v=vs.85%29.aspx
|
||||
|
||||
Dpinst.xml Example:
|
||||
http://msdn.microsoft.com/en-us/library/windows/hardware/ff544778%28v=vs.85%29.aspx
|
||||
-->
|
||||
|
||||
<?xml version="1.0"?>
|
||||
<dpinst>
|
||||
<forceIfDriverIsNotBetter>1</forceIfDriverIsNotBetter>
|
||||
<installAllOrNone>1</installAllOrNone>
|
||||
</dpinst>
|
BIN
EisMultiplexerWinDriver/dpinst32.exe
Executable file
BIN
EisMultiplexerWinDriver/dpinst32.exe
Executable file
Binary file not shown.
BIN
EisMultiplexerWinDriver/dpinst64.exe
Executable file
BIN
EisMultiplexerWinDriver/dpinst64.exe
Executable file
Binary file not shown.
BIN
EisMultiplexerWinDriver/dpscat.exe
Executable file
BIN
EisMultiplexerWinDriver/dpscat.exe
Executable file
Binary file not shown.
73
EisMultiplexerWinDriver/re-pack-files.cmd
Executable file
73
EisMultiplexerWinDriver/re-pack-files.cmd
Executable file
|
@ -0,0 +1,73 @@
|
|||
@ECHO OFF
|
||||
SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
|
||||
|
||||
SET FILES_TO_PACK=*.inf dpinst* dpscat.* .\data* .\x86* .\amd64*
|
||||
SET SFX_MODULE=7zDP_LZMA.sfx
|
||||
SET SFX_MODULE_CFG=7zDP_LZMA.cfg
|
||||
SET INSTALL_DRIVER_EXE=InstallDriver.exe
|
||||
SET DRIVER_FILES_7Z=_DriverFiles.7z
|
||||
SET 7Z_SWITCHES=-air0 -mx
|
||||
|
||||
SET CMD_EXIT_CODE=0
|
||||
|
||||
IF EXIST "!7ZA_EXE!" (SET 7Z_RUN="!7ZA_EXE!") ELSE CALL :Find7Zip 7za.exe 7z.exe 7zan.exe
|
||||
IF !7Z_RUN! EQU "" (
|
||||
ECHO 7Zip is required to re-pack this installer.
|
||||
ECHO 1] Download and install 7Zip. http://www.7-zip.org/
|
||||
ECHO 2] Add the bin folder to the PATH environment variable.
|
||||
ECHO "Control Panel->System->Advanced->Environment Variables..."
|
||||
SET CMD_EXIT_CODE=1
|
||||
GOTO Error
|
||||
)
|
||||
|
||||
IF EXIST "!INSTALL_DRIVER_EXE!" DEL /Q "!INSTALL_DRIVER_EXE!"
|
||||
IF NOT "!ERRORLEVEL!" EQU "0" (
|
||||
ECHO Access denied or file in-use "!INSTALL_DRIVER_EXE!"
|
||||
SET CMD_EXIT_CODE=2
|
||||
GOTO Error
|
||||
)
|
||||
|
||||
IF EXIST "!DRIVER_FILES_7Z!" DEL /Q "!DRIVER_FILES_7Z!"
|
||||
IF NOT "!ERRORLEVEL!" EQU "0" (
|
||||
ECHO Access denied or file in-use "!DRIVER_FILES_7Z!"
|
||||
SET CMD_EXIT_CODE=3
|
||||
GOTO Error
|
||||
)
|
||||
|
||||
!7Z_RUN! a "!DRIVER_FILES_7Z!" !FILES_TO_PACK! !7Z_SWITCHES!
|
||||
IF NOT "!ERRORLEVEL!" EQU "0" (
|
||||
ECHO Failed re-packing. Check your 7Zip installation at
|
||||
ECHO !7Z_RUN!
|
||||
SET CMD_EXIT_CODE=4
|
||||
GOTO Error
|
||||
)
|
||||
|
||||
COPY /B "!SFX_MODULE!"+"!SFX_MODULE_CFG!"+"!DRIVER_FILES_7Z!" "!INSTALL_DRIVER_EXE!"
|
||||
|
||||
ECHO.
|
||||
ECHO Done.
|
||||
ECHO "!INSTALL_DRIVER_EXE!" re-packed!
|
||||
GOTO :EOF
|
||||
|
||||
:Find7Zip
|
||||
IF EXIST "%~dp0\%~1" (
|
||||
SET 7Z_RUN="%~dp0\%~1"
|
||||
ECHO 7Zip found at: !7Z_RUN!
|
||||
GOTO :EOF
|
||||
)
|
||||
|
||||
SET 7Z_RUN="%~$PATH:1"
|
||||
IF NOT !7Z_RUN! EQU "" (
|
||||
ECHO 7Zip found at: !7Z_RUN!
|
||||
SET 7Z_RUN="%~1"
|
||||
GOTO :EOF
|
||||
)
|
||||
SHIFT /1
|
||||
IF "%~1" EQU "" GOTO :EOF
|
||||
GOTO Find7Zip
|
||||
GOTO :EOF
|
||||
|
||||
:Error
|
||||
IF NOT DEFINED NO_REPACK_ERROR_WAIT PAUSE
|
||||
EXIT %CMD_EXIT_CODE%
|
||||
GOTO :EOF
|
BIN
EisMultiplexerWinDriver/x86/WdfCoInstaller01009.dll
Executable file
BIN
EisMultiplexerWinDriver/x86/WdfCoInstaller01009.dll
Executable file
Binary file not shown.
BIN
EisMultiplexerWinDriver/x86/libusbK_x86.dll
Executable file
BIN
EisMultiplexerWinDriver/x86/libusbK_x86.dll
Executable file
Binary file not shown.
BIN
EisMultiplexerWinDriver/x86/winusbcoinstaller2.dll
Executable file
BIN
EisMultiplexerWinDriver/x86/winusbcoinstaller2.dll
Executable file
Binary file not shown.
Loading…
Reference in a new issue