Skip to content

Commit

Permalink
[install] Add top-level setup.bat and readme.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
mcb30 committed Dec 19, 2008
1 parent 0de9382 commit e1d93b8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
8 changes: 8 additions & 0 deletions readme.txt
@@ -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 changes: 16 additions & 0 deletions setup.bat
@@ -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

0 comments on commit e1d93b8

Please sign in to comment.