Hi Marco, Marco Gaiarin wrote: > I've setup a recipe to install the toolbook runtime, and i've add a > command to modify the path: > > <install cmd='%WPKGROOT%\tools\modpath /add "%WINDIR%\ASYM\RUNTIME\"' /> > > i've setup the recipe and forgot to copy modpath.exe to the > 'production' environment. ;( > The recipe work, eg, this command seems to return exit status 0, even > if the file does not exist. > > This is a DOS 'feature'? ;((( There is no DOS involved here. Even no command-line interpreter is involved here since you did not execute one. Try executing it on cmd.exe <install cmd='%COMSPEC% /c "%WPKGROOT%\tools\modpath /add %WINDIR%\ASYM\RUNTIME\"' /> Then exit status should be non-zero if the command is not found. br, Rainer |