Updated windows driver installer bat, with changes by Tim, so that it works if the path to the driver bat has spaces in it

This commit is contained in:
Roger Clark 2015-01-26 17:20:35 +11:00
parent d8634c071f
commit 00d27a24bd
1 changed files with 10 additions and 8 deletions

View File

@ -1,9 +1,11 @@
@echo off
echo Installing Maple DFU driver...
%~dp0wdi-simple --vid 0x1EAF --pid 0x0003 --type 1 --name "Maple DFU" --dest %~dp0maple-dfu
echo Installing Maple Serial driver...
%~dp0wdi-simple --vid 0x1EAF --pid 0x0004 --type 3 --name "Maple Serial" --dest %~dp0maple-serial
@echo off
echo Installing Maple DFU driver...
"%~dp0wdi-simple" --vid 0x1EAF --pid 0x0003 --type 1 --name "Maple DFU" --dest "%~dp0maple-dfu"
echo.
echo Installing Maple Serial driver...
"%~dp0wdi-simple" --vid 0x1EAF --pid 0x0004 --type 3 --name "Maple Serial" --dest "%~dp0maple-serial"
echo.
pause