On Tue, Feb 9, 2010 at 1:15 PM, Rony G. Flatscher <[email protected]> wrote: > Hi Mark, > > Maybe one more question: the ooRexx build script makeorx.bat uses "killer > rxapi.exe" to kill rxapi.exe. It now yields the following error: > > F:\work\svn\oorexx\main\trunk>killer rxapi.exe > OpenProcess() failed with error 5 (Zugriff verweigert > )
I also started getting this error on a new system where I installed Visual Studio 2008. The system is XP, at the same level as a number of other XP systems I use where the killer application works fine. I didn't investigate. ;-( But, simply edited my makeorx.bat to use the SysInternals kill utility, which does work. C:\work\wc\main>svn diff makeorx.bat Index: makeorx.bat =================================================================== --- makeorx.bat (revision 5545) +++ makeorx.bat (working copy) @@ -116,7 +116,7 @@ SET MKDEBUG=0 :STARTBUILD -killer rxapi.exe +pskill rxapi.exe CALL ORXDB %BLDRELEASE% IF ERRORLEVEL 1 GOTO ENV_VARS_CLEANUP C:\work\wc\main> You could get pskill at: www.sysinternals.com which will redirect you to the Microsoft site where you could download it. In thinking about it now, it seems that Visual Studio 2008 may replace the CRT library with one that has some change in it, so that killer does not work. Or it may be an added security thing that crept in. I'll have to take a look. -- Mark Miesfeld ------------------------------------------------------------------------------ SOLARIS 10 is the OS for Data Centers - provides features such as DTrace, Predictive Self Healing and Award Winning ZFS. Get Solaris 10 NOW http://p.sf.net/sfu/solaris-dev2dev _______________________________________________ Oorexx-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/oorexx-devel
