Hello,
I have created a simple batch file to create my image (Windows CE 5.0) at
command line. My batch file looks like this:
cls
@echo off
title Build PP/MP Image
@REM
@REM Set WinCERoot
@REM
set _WINCEROOT=C:\Wince500
@REM
@REM Navigate to %_WINCEROOT%\Public\Common\Oak\Misc.
@REM
cd %_WINCEROOT%\Public\Common\Oak\Misc
@REM
@REM Run WinCE.bat
@REM
WinCE.bat x86 BRMyImage MyPlatform
@REM
@REM We create a release image
@REM
Set WINCEDEBUG=retail
@REM
@REM Start BldDemo.bat
@REM
blddemo -clean
The problem is that blddemo is not started automatically - only a new
command shell window (Windows CE Build Environment) is opened. If I enter
blddemo manually (using my keyboard) blddemo starts ...
Any idea?
Regards Peter