10 lines
483 B
Batchfile
10 lines
483 B
Batchfile
@echo off
|
|
|
|
@rem Read object file paths generated by build process
|
|
call %SINGULARITY_ROOT%\buildcfg.cmd
|
|
|
|
start "Singularity BVT Boot Server" cmd.exe /c boottest.cmd /dhcp
|
|
start windbg.exe -logo %SINGULARITY_ROOT%\dboot.log -k com:pipe,port=\\.\pipe\kd,resets=0,reconnect -QY -WX -W %SINGULARITY_ROOT%:%BUILDTYPE% -d -c "g" %*
|
|
start "Singularity BVT Client" /wait "c:\program files\microsoft virtual pc\virtual pc.exe" -singlepc -quiet -pc pxe -launch
|
|
taskkill /IM windbg.exe
|