--- /dev/null
+SAN Boot Configuration Driver for Windows - Quick Start Instructions\r
+====================================================================\r
+\r
+1. Install the Microsoft iSCSI Initiator (boot-capable version).\r
+\r
+2. Run setup.bat from this directory.\r
+\r
+Congratulations, your system is now iSCSI-bootable.\r
--- /dev/null
+@echo off
+
+set cpu=
+if "%PROCESSOR_ARCHITECTURE%"=="x86" set cpu=i386
+if "%PROCESSOR_ARCHITECTURE%"=="AMD64" set cpu=amd64
+if "%cpu%"=="" goto cpuerror
+
+%0\..\bin\%cpu%\setup.exe
+goto :end
+
+:cpuerror
+echo Could not determine CPU type
+pause
+goto :end
+
+:end