Deployment Solution

 View Only
  • 1.  Error 128 during script execution

    Posted Nov 03, 2010 08:49 AM

    I'm trying to push out a Java Upgrade from Deployment Server 6.9 and keep getting "Error 128 during script execution".  I suspect it has to do with my script that precurses the Java upgrade executable:

    taskkill /f /IM iexplore.exe

    What is Error 128?



  • 2.  RE: Error 128 during script execution

    Posted Nov 03, 2010 03:19 PM

    Error 128 for TASKKILL means that the process was not found. This is some output that can shed some light (from a Command Prompt):

    taskkill /f /im program.exe
    ERROR: The process "program.exe" not found.

    echo %errorlevel%
    128
     

    If you don't care if the process is not found, make error 128 a conditional success.

    HTH