[install] Add top-level setup.bat and readme.txt

This commit is contained in:
Michael Brown 2008-12-19 02:40:09 +00:00
parent 0de93821f9
commit e1d93b8272
2 changed files with 24 additions and 0 deletions

8
readme.txt Normal file
View File

@ -0,0 +1,8 @@
SAN Boot Configuration Driver for Windows - Quick Start Instructions
====================================================================
1. Install the Microsoft iSCSI Initiator (boot-capable version).
2. Run setup.bat from this directory.
Congratulations, your system is now iSCSI-bootable.

16
setup.bat Normal file
View File

@ -0,0 +1,16 @@
@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