How to return an error code to DOS at the end of a java batch

Hi,
I have a batch file which launch my java program.
At the end of the program, I would like to give my batch file an error code.
Do you know how to do that?
Does the main function is able to return an error code?
Does the bat file is able to recover it?
Thanks in advance for your help!
Nicolas

Hi,
No, the variable ERRORLEVEL will hold the status code of the "command" last executed. E.g.
java -cp "%CLASSPATH%" tets.BatchRetour
IF ERRORLEVEL 1 goto HandleError
For more info see
http://home.att.net/~gobruen/progs/dos_batch/dos_batch.html
/Kaj

Similar Messages

  • When I download the digital copy of the Hunger Games, it stops at 4.0GB and first returns an error code -1309 and then the code -50. Please help me complete the download.

    When I download the digital copy of the Hunger Games, it stops at 4.0GB and first returns an error code -1309 and then the code -50. Please help me complete the download. I have tried removing the .tmp folder and downloading it again, but each time it stops the download in the same place.

    I discovered the solution. The external drive I was saving it to was formatted as FAT32. In that format, the largest files can only be 4GB, which explains why it kept stopping at 4GB. I backed up all the files then reformatted it as Mac OS Extended (Journaled), this is possible since I am on an iMac.

  • Itune error code 3 come  at the end of restoring process

    help!! my iphone 5 is stuck in recovery mode and when I try to restore it,my iphone start restoring (ios7.1)but in middle of restoring I get itune error code 3,so pls help and the error come  at the end of restoring process

    aparsethi wrote:
    but in middle of restoring I get itune error code 3,
    Check for hardware issues
    Related errors: 1, 3, 10, 11, 12, 13, 14, 16, 20, 21, 23, 26, 27, 28, 29, 34, 35, 36, 37, 40, 1000, 1002, 1004, 1011, 1012, 1014, 1667, or 1669.
    Try to restore your iOS device two more times while connected with a cable, computer, and network you know are good.
    Also, confirm your security software and settings are allowing communication between your device and update servers.
    If you still see the error message when you update or restore, contact Apple support.

  • Java - Axis2: How to get an error code / error message from the Javascript via SOAP

    Hi
    In our Java applicsation we call a Javascript in a Indesign CS Server using the following code:
    --- SNIP BEGIN ---
    // calls the remote service on the indesign server
    try {
    // create service
    ServiceStub oIndsgnSrvStub = new
    ServiceStub(sIndesignServer);
    // create service parameter
    ServiceStub.RunScriptParameters
    oIndsgnSrvRSParams = new ServiceStub.RunScriptParameters();
    // create arguments with source- and target-file for parameter
    ServiceStub.IDSPScriptArg[] oIndsgnSrvSArgs = new ServiceStub.IDSPScriptArg[2];
    oIndsgnSrvSArgs[0] = new
    ServiceStub.IDSPScriptArg();
    oIndsgnSrvSArgs[0].setName("xml-input");
    oIndsgnSrvSArgs[0].setValue(sSourceFile);
    oIndsgnSrvSArgs[1] = new
    ServiceStub.IDSPScriptArg();
    oIndsgnSrvSArgs[1].setName("output-file");
    oIndsgnSrvSArgs[1].setValue(sTargetFile);
    // define service parameter
    oIndsgnSrvRSParams.setScriptArgs(oIndsgnSrvSArgs);
    oIndsgnSrvRSParams.setScriptFile(sScriptFile);
    oIndsgnSrvRSParams.setScriptLanguage("javascript");
    oIndsgnSrvRSParams.setScriptText("");
    // create runscript
    ServiceStub.RunScript oIndsgnSrvRS = new ServiceStub.RunScript();
    // set parameter
    oIndsgnSrvRS.setRunScriptParameters(oIndsgnSrvRSParams);
    //$$$ there should be an answer returned by the InddSrvr
    // execute SOAP call
    ServiceStub.RunScriptResult oIndsgnSrvRes = oIndsgnSrvStub.RunScript(oIndsgnSrvRS);
    if(oIndsgnSrvRes.getErrorNumber() == 0) {
    oServerProdJob.setProdState(CBP_Constant.REMOTEPRODUCTIONSTATE_SUCCESS);
    bOK = true;
    } else {
    oServerProdJob.setProdState(CBP_Constant.REMOTEPRODUCTIONSTATE_FAILURE);
    bOK = false;
    //$$$ should be set, if there is something returned by inddsrvr
    //oServerProdJob.setErrorMsg(sErrorMsg);
    } catch(Exception e) {
    sError += e.getMessage() + "\n";
    bOK = false;
    --- SNIP END -----
    The problem is that we don't get the error code and/or the error message from the Javascript in oIndsgnSrvRes. The error code is always 0 if I set an Integer value as return in the Javascript. If I set a String, there is an Exception in the Java application.
    Here is the Java script we use:
    --- SNIP BEGIN ---
    main();
    main()
    var sError = "";
    var sXMLInput = "";
    var sLayoutPath = "";
    // get the SDKCodeSnippetRunner object
    var cbpAdapter = app.cbpCbpadapterObject
    if (cbpAdapter) {
    sXMLInput=app.scriptArgs.get("xml-input");
    sLayoutOutputFile=app.scriptArgs.get("output-file");
    sError = cbpAdapter.doProcess(sXMLInput, sLayoutOutputFile);
    return sError; // This give an Exception; if I return an Integer the ScriptResult is always 0
    --- SNIP END -----
    If I try this with the test application from Adobe I get the error code correctly. But in the Java application, using SOAP, I can't get the error code.
    What could be wrong?
    Any ideas?
    Thanks a lot for the support.
    Kind regards
    Hans

    user11340104 wrote:
    Hello -
    i am calling sqlplus from a bash shell script. If the sql statement generates an error, how can I return that error code (unsuccessful) back to the bash shell?
    Well, let google be your friend,
    http://www.google.co.in/search?rlz=1C1GGLS_enIN327IN327&sourceid=chrome&ie=UTF-8&q=sqlplus+error+codes
    There are many threads I guess talking about the same issue.
    HTH
    Aman....

  • How to get an error code from from calling sqlplus from shell script?

    Hello -
    i am calling sqlplus from a bash shell script. If the sql statement generates an error, how can I return that error code (unsuccessful) back to the bash shell?
    Thanks!

    user11340104 wrote:
    Hello -
    i am calling sqlplus from a bash shell script. If the sql statement generates an error, how can I return that error code (unsuccessful) back to the bash shell?
    Well, let google be your friend,
    http://www.google.co.in/search?rlz=1C1GGLS_enIN327IN327&sourceid=chrome&ie=UTF-8&q=sqlplus+error+codes
    There are many threads I guess talking about the same issue.
    HTH
    Aman....

  • TS3694 how do i fix error code 3194

    how do i fix error code 3194

    Presumably you read the article from which you posted. The regular guess is that your phone is jailbroken. If so it is not supported here.

  • Make to compile the Petalinux software image, but "returned an error code (127) ;make[1]: *** [pkg_stagefs] Error 255"

    Hello,
    I am trying ot make to compile the Petalinux software image( make in $PETALINUX/software/petalinux-dist) . Refer to the UG977 PetaLinux SDK Getting Started Guide.pdf
     However, when it gets to "[INFO ]  Expanding stagefs", there is be an error . How can i do it?
    My petalinux was installed in Debian-6.0.6-amd64 OS Host (in VirtualBox on my win7).
    Thanks in advance!
    Here is my PetaLinux compilation progress output:
    $PETALINUX/software/petalinux-dist$ make
    [INFO ] Saving previous build.log
    [INFO ] Building ucfront tool
    [INFO ] Building kernel
    [INFO ] Building kernel modules
    [INFO ] Building include
    [INFO ] Building rootfs
    [INFO ]  Setting up stage config
    [INFO ]  Setting up romfs config
    [INFO ]  Updating for microblazeel-v830-bs-cmp-mh-div
    [INFO ]  Updating package manager
    [INFO ]  Expanding stagefs
    [ERROR]  E: Sub-process /home/focs/petalinux-v2013.04-final-full/software/petalinux-dist/tools/packagemanager/bin/dpkg returned an error code (127)
    [00:02] \ make[1]: *** [pkg_stagefs] Error 255
    make: *** [subdirs] Error 1
     

    I am seeing the same error.
    Environment:
    Host PC : CentOS-6.5-x86_64
    Xilinx Tools: Vivado 2013.3
    PetaLinux Release:  2013.10
    Page 11 of The Petalinux Installation guide document shows the packages required for Petalinux installation in the 1st column.  I have installed all these packages except libstdc++-4.4.6-4.el6.i686.  The only version readily available was libstdc++-4.4.7-4.el6.i686.
    http://www.xilinx.com/support/documentation/sw_manuals/petalinux2013_10/ug976-petalinux-installation.pdf
    sudo yum install dos2unix iproute gawk gcc git gnutls-devel net-tools ncurses-devel tftp-server zlib-devel flex bison libstdc++-devel.i686 glibc.i686 libgcc.i686
    Loaded plugins: fastestmirror, refresh-packagekit, security
    Loading mirror speeds from cached hostfile
    * base: centos.mirror.lstn.net
    * extras: mirror.ubiquityservers.com
    * updates: centos.gravityfish.com
    Setting up Install Process
    Package dos2unix-3.1-37.el6.x86_64 already installed and latest version
    Package iproute-2.6.32-31.el6.x86_64 already installed and latest version
    Package gawk-3.1.7-10.el6.x86_64 already installed and latest version
    Package gcc-4.4.7-4.el6.x86_64 already installed and latest version
    Package git-1.7.1-3.el6_4.1.x86_64 already installed and latest version
    Package gnutls-devel-2.8.5-10.el6_4.2.x86_64 already installed and latest version
    Package net-tools-1.60-110.el6_2.x86_64 already installed and latest version
    Package ncurses-devel-5.7-3.20090208.el6.x86_64 already installed and latest version
    Package tftp-server-0.49-7.el6.x86_64 already installed and latest version
    Package zlib-devel-1.2.3-29.el6.x86_64 already installed and latest version
    Package flex-2.5.35-8.el6.x86_64 already installed and latest version
    Package bison-2.4.1-5.el6.x86_64 already installed and latest version
    Package libstdc++-devel-4.4.7-4.el6.i686 already installed and latest version
    Package glibc-2.12-1.132.el6.i686 already installed and latest version
    Package libgcc-4.4.7-4.el6.i686 already installed and latest version
    Nothing to do
    When I run petalinux-buiild from the project Xilinx-ZC702-2013.3 directory, I see the same error.
    $ cd petalinux-v2013.10-final/
    $ source settings.sh
    PetaLinux environment set to '/home/logic/petalinux-v2013.10-final'
    INFO: Checking free disk space
    INFO: Checking installed tools
    INFO: Checking installed development libraries
    INFO: Checking network and other services
    $ cd ../Xilinx-ZC702-2013.3/
    $ petalinux-build
    INFO: Checking component...
    INFO: Generating make files and build linux
    INFO: Generating make files for the subcomponents of linux
    INFO: Building linux
    [INFO ] pre-build linux/rootfs/fwupgrade
    [INFO ] pre-build linux/rootfs/peekpoke
    [INFO ] pre-build linux/rootfs/uWeb
    [INFO ] build linux/kernel
    [INFO ] update linux/u-boot source
    [INFO ] generate linux/u-boot configuration files
    [INFO ] build linux/u-boot
    [INFO ] Setting up stage config
    [INFO ] Setting up rootfs config
    [INFO ] Updating for armv7a-vfp-neon
    [INFO ] Updating package manager
    [INFO ] Expanding stagefs
    [ERROR] E: Sub-process /home/logic/petalinux-v2013.10-final/tools/packagemanager/bin/dpkg returned an error code (127)
    [ERROR] make[2]: *** [pkg_stagefs] Error 255
    [ERROR] make[1]: *** [sub_build_component_/none/packages-repo/single/plnx-repo] Error 2
    ERROR: Failed to build linux
     

  • OPatch returns with error code = 170

    Performing Critical Patch Update (April 2007), attempting to run opatch apply when the following error is encountered:
    "OPatch returns with error code = 170"
    Note: Directory is a number

    This is my understanding of how the two primary software sets act. I'll break it down through a series of step I use to form a worksheet created every time a CPU comes out. This is on a Windows platform but I suspect it is similar if on xxIX; also, these patch numbers are for 10gDB/AS R1; yours will likely vary.
    1. Database server
    a. Download patch 5907304 zip to d:\temp
    b. Unzip to d:\temp ==> creates d:\temp\5907304
    c. Change directory to d:\temp\5907304
    d. run Opatch
    2. App server
    a. Down load patch 5922119 zip to d:\temp
    b. Unzip to d:\temp ==> creates d:\temp\5922119
    c. Change directory to d:\temp\5922119\5922119
    d. run Opatch
    Database and App server have a slightly different nuance in arriving at the correct directory. Regards, John

  • Jre 8u25 & Windows 8.1 Prof 64 Bit - CustomAction installexe returned actual error code 61014

    Hi guys,
    i have a Problem with Java.
    Unfortunally i can not install any verison. i tried 7u71 and 8u25 without any success.
    I am using Windows 8.1 Professional. I am local Administrator and dont use any 3rd Party Firewall/Antivirus Software.
    Every JRE Installation will fail, see screenshot:
    i tried to install the MSI package with verbose Output. Here is the detailed Output:
    http://pastebin.com/WVnPsWC0
    The are (in my opinion) the most important lines:
    MSI (s) (38:24) [14:15:54:571]: Executing op: CustomActionSchedule(Action=installexe,ActionType=1026,Source=BinaryData,Target= INSTALLDIR="C:\Program Files (x86)\Java\jre1.8.0_25\\" REPAIRMODE=0,)
    CustomAction installexe returned actual error code 61014 (note this may not be 100% accurate if translation happened inside sandbox)
    MSI (s) (38:24) [14:16:05:406]: Note: 1: 1722 2: installexe 3: C:\Windows\Installer\MSIB4D6.tmp 4:  INSTALLDIR="C:\Program Files (x86)\Java\jre1.8.0_25\\" REPAIRMODE=0
    MSI (c) (2C:18) [14:16:05:422]: Font created.  Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
    Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action installexe, location: C:\Windows\Installer\MSIB4D6.tmp, command:  INSTALLDIR="C:\Program Files (x86)\Java\jre1.8.0_25\\" REPAIRMODE=0
    MSI (s) (38:24) [14:16:07:179]: Product: Java 8 Update 25 -- Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action installexe, location: C:\Windows\Installer\MSIB4D6.tmp, command:  INSTALLDIR="C:\Program Files (x86)\Java\jre1.8.0_25\\" REPAIRMODE=0
    Any ideas.. please help me out!

    Same error here.  Running Windows 7 64bit and I'm currently unable to install Java.  Below is the log from a offline installation.
    You edited your response noting that you were able to get it to work by running it through an admin shell.  Can you please list step-by-step instructions on how you were able to accomplish this.
    Thanks
    === Logging started: 10/19/2014  14:51:42 ===
    Action start 14:51:42: INSTALL.
    Action start 14:51:42: SetSilentInstall.
    Action ended 14:51:42: SetSilentInstall. Return value 1.
    Action start 14:51:42: AppSearch.
    Action ended 14:51:42: AppSearch. Return value 1.
    Action start 14:51:42: LaunchConditions.
    Action ended 14:51:42: LaunchConditions. Return value 1.
    Action start 14:51:42: FindRelatedProducts.
    Action ended 14:51:42: FindRelatedProducts. Return value 0.
    Action start 14:51:42: ValidateProductID.
    Action ended 14:51:42: ValidateProductID. Return value 1.
    Action start 14:51:42: CostInitialize.
    Action ended 14:51:42: CostInitialize. Return value 1.
    Action start 14:51:42: FileCost.
    Action ended 14:51:42: FileCost. Return value 1.
    Action start 14:51:42: IsolateComponents.
    Action ended 14:51:42: IsolateComponents. Return value 0.
    Action start 14:51:42: CostFinalize.
    Action ended 14:51:42: CostFinalize. Return value 1.
    Action start 14:51:42: SetCMDLine.
    Action ended 14:51:42: SetCMDLine. Return value 1.
    Action start 14:51:42: MigrateFeatureStates.
    Action ended 14:51:42: MigrateFeatureStates. Return value 0.
    Action start 14:51:42: InstallValidate.
    Action ended 14:51:42: InstallValidate. Return value 1.
    Action start 14:51:42: RemoveExistingProducts.
    Action ended 14:51:42: RemoveExistingProducts. Return value 0.
    Action start 14:51:42: InstallInitialize.
    Action ended 14:51:42: InstallInitialize. Return value 1.
    Action start 14:51:42: AllocateRegistrySpace.
    Action ended 14:51:42: AllocateRegistrySpace. Return value 1.
    Action start 14:51:42: ProcessComponents.
    Action ended 14:51:43: ProcessComponents. Return value 1.
    Action start 14:51:43: UnpublishComponents.
    Action ended 14:51:43: UnpublishComponents. Return value 0.
    Action start 14:51:43: UnpublishFeatures.
    Action ended 14:51:43: UnpublishFeatures. Return value 1.
    Action start 14:51:43: StopServices.
    Action ended 14:51:43: StopServices. Return value 1.
    Action start 14:51:43: DeleteServices.
    Action ended 14:51:43: DeleteServices. Return value 1.
    Action start 14:51:43: RemoveRegistryValues.
    Action ended 14:51:43: RemoveRegistryValues. Return value 1.
    Action start 14:51:43: RemoveDuplicateFiles.
    Action ended 14:51:43: RemoveDuplicateFiles. Return value 1.
    Action start 14:51:43: RemoveFiles.
    Action ended 14:51:43: RemoveFiles. Return value 1.
    Action start 14:51:43: RemoveFolders.
    Action ended 14:51:43: RemoveFolders. Return value 1.
    Action start 14:51:43: CreateFolders.
    Action ended 14:51:43: CreateFolders. Return value 1.
    Action start 14:51:43: MoveFiles.
    Action ended 14:51:43: MoveFiles. Return value 1.
    Action start 14:51:43: InstallFiles.
    Action ended 14:51:43: InstallFiles. Return value 1.
    Action start 14:51:43: DuplicateFiles.
    Action ended 14:51:43: DuplicateFiles. Return value 1.
    Action start 14:51:43: WriteRegistryValues.
    Action ended 14:51:43: WriteRegistryValues. Return value 1.
    Action start 14:51:43: RegisterUser.
    Action ended 14:51:43: RegisterUser. Return value 1.
    Action start 14:51:43: RegisterProduct.
    Action ended 14:51:43: RegisterProduct. Return value 1.
    Action start 14:51:43: PublishComponents.
    Action ended 14:51:43: PublishComponents. Return value 0.
    Action start 14:51:43: PublishFeatures.
    Action ended 14:51:43: PublishFeatures. Return value 1.
    Action start 14:51:43: PublishProduct.
    Action ended 14:51:43: PublishProduct. Return value 1.
    Action start 14:51:43: installexerollback.
    Action ended 14:51:43: installexerollback. Return value 1.
    Action start 14:51:43: installexe.
    Action ended 14:51:44: installexe. Return value 1.
    Action start 14:51:44: InstallFinalize.
    CustomAction installexe returned actual error code 61013 (note this may not be 100% accurate if translation happened inside sandbox)
    MSI (s) (F4:30) [14:52:05:781]: Product: Java 8 Update 25 -- Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action installexe, location: C:\Windows\Installer\MSIBA94.tmp, command: /s INSTALLDIR="C:\Program Files (x86)\Java\jre1.8.0_25\\" REPAIRMODE=0
    Error 1722. There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action installexe, location: C:\Windows\Installer\MSIBA94.tmp, command: /s INSTALLDIR="C:\Program Files (x86)\Java\jre1.8.0_25\\" REPAIRMODE=0
    Action ended 14:52:05: InstallFinalize. Return value 3.
    Action ended 14:52:09: INSTALL. Return value 3.
    MSI (s) (F4:30) [14:52:09:629]: Product: Java 8 Update 25 -- Installation failed.
    MSI (s) (F4:30) [14:52:09:647]: Windows Installer installed the product. Product Name: Java 8 Update 25. Product Version: 8.0.250. Product Language: 1033. Manufacturer: Oracle Corporation. Installation success or error status: 1603.
    === Logging stopped: 10/19/2014  14:52:09 ===

  • How can I resolve error code -54 in iTunes? I am using the latest iTunes. No new updates are available.

    How can I resolve error code -54 in iTunes? I am using the latest iTunes. No new updates are available. I'm using iTunes 11.3 on a MacBook Pro, OS X 10.6.8. I can't save my library in iTunes, the message just keeps popping up.

    From an OS9 reference, error -54 is a software lock on a file or a permissions error. (Although there is no formal list of OSX error code some of the old codes still apply to OSX .)
    First, try simply restarting your computer.
    Try quitting iTunes, then deleting the .xml (not .itl !) version of the library file in the iTunes folder (iTunes will generate a new one).
    iTunes Library cannot be saved (Error -54) - https://discussions.apple.com/thread/1912814 - various things to try.
    Unknown error (-54) while syncing ipod - https://discussions.apple.com/thread/1082953 - problem was locked files
    Why does iTunes keep showing a -54 error when I sync my iPad? - https://discussions.apple.com/thread/3727114
    Error -54 possibly related to Touch Copy - https://discussions.apple.com/thread/3727114 - cleared by deleting preferences on iPad.
    iTunes: Missing folder or incorrect permissions may prevent authorization - http://support.apple.com/kb/ts1277
    Troubleshooting permissions issues in Mac OS X - http://support.apple.com/kb/HT2963

  • Error during Custom Build - error PRJ0019: A tool returned an error code from "Performing Custom Build Step"

    Hi All,
    I was trying to develop C++ web service using GShop with Visual Studio 2005.I refered a tutorial :-
    http://guruce.com/blogpost/hosting-webservices-on-windows-embedded-compact-windows-ce-using-gsoap .
    AS per the tutorial i proceeded. But, i stuck-up when making a custom build with Helloworld.wsdl.Here is the output :
    1>------ Rebuild All started: Project: HelloWorldWebService, Configuration: Debug Pocket PC 2003 (ARMV4) ------
    1>Deleting intermediate and output files for project 'HelloWorldWebService', configuration 'Debug|Pocket PC 2003 (ARMV4)'
    1>Performing Custom Build Step
    1>'D:\Test' is not recognized as an internal or external command,
    1>operable program or batch file.
    1>Project : error PRJ0019: A tool returned an error code from "Performing Custom Build Step"
    1>Build log was saved at "file://d:\Test Code\HelloWorldWebService\HelloWorldWebService\Pocket PC 2003 (ARMV4)\Debug\BuildLog.htm"
    1>HelloWorldWebService - 1 error(s), 0 warning(s)
    ========== Rebuild All: 0 succeeded, 1 failed, 0 skipped ==========
    As given in the tutorial i kept my custom build command line as : -
    $(SolutionDir)\gsoap-2.8\gsoap\bin\win32\wsdl2h.exe -s $(InputPath) -o $(ProjectDir)$(InputName).h
    and outpouts : $(InputName).h
    I kept GSHOP in the project filder :- D:\Test Code\HelloWorldWebService
    Kindly help.
    Jyotiranjan

    Hi Jyotiranjan,
    I’m glad to hear that you got it working.
    Thank you for sharing your solutions
    experience here. It will be very beneficial for other community members who
    have similar questions.
    Best regards,
    Lucy
    Lucy Liu [MSFT]
    MSDN Community Support | Feedback to us
    Get or Request Code Sample from Microsoft
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • How do I override "error code -61" when attempting to put things in the Trash? Cannot empty Trash or use Secure Empty Trash.

    How do I override "error code -61" when attempting to put items in the Trash?  Cannot empty Trash or use Secure Empty Trash. I have a MacBook OS X 10.5.8

    The reason why some of the files are blocking the trash from emptying is because of specific ".app" files from third party companies like Adobe products. Not the user files or the various help documents but instead the actual mother program. Here's how to fix this problem:
    1) remove from the trash all the actual software programs like Photoshop, InDesign, DreamWeaver and so on and put them on the desktop.
    2) Command "I" (info) and when the dialog box opens go to the "Name & Extension" text box and remove the ".app" from the software name. Example: Photoshop.app change to Photoshop.
    3) the program icon will change to a "folder icon".
    4) put the folder icon back into the trash and you should be able to now empty the trash.
    If you continue to get the error code 8003 it's because you may still have one or more software programs in the trash that needs to go through this process. Remember - it's not the user files or help documents or supporting files that is causing this but instead the "actual product programs".
    JKai

  • How do I fix error code 1406 when downloading Adobe Reader

    How do I fix error code 1406 when trying to download Adobe Reader, using Windows 7 Pro, 64 Bit.

    Hi ldpowell44
    Plesse refer the below Document : http://helpx.adobe.com/acrobat/kb/error-1402-error-1406-acrobat.html

  • TS3297 How do I resolve error code 8003 when I try to empty the trash?

    How do I resolve error code 8003 when I try to empty the trash?

    Try this Discussion from the More Like This  section...
    https://discussions.apple.com/message/18549254#18549254

  • How do i resolve error code from hardware test

    How do I resolve error code from hardware test.

    by bringing your mac to your local Apple store or AASP for repair.

Maybe you are looking for