From 00d27a24bde02c1084e7579664fd1fc9307638c8 Mon Sep 17 00:00:00 2001 From: Roger Clark Date: Mon, 26 Jan 2015 17:20:35 +1100 Subject: [PATCH] Updated windows driver installer bat, with changes by Tim, so that it works if the path to the driver bat has spaces in it --- drivers/win/install_drivers.bat | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/drivers/win/install_drivers.bat b/drivers/win/install_drivers.bat index 7c3ebb6..6b9f61a 100644 --- a/drivers/win/install_drivers.bat +++ b/drivers/win/install_drivers.bat @@ -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