Share via

What is a (0x3) indication in the "Last run Results" of the scheduled task list?

Anonymous
2012-09-17T12:18:02+00:00

I get the (0x3) in the Last run Results when the scheduled task runs at night but the task sems to be work as the files are copied to the external drive???

Windows for home | Previous Windows versions | Windows update

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

  1. Anonymous
    2012-09-18T08:40:57+00:00

    Hi,

    1. What task is scheduled when you receive this error message?
    2. What type of files were being copied during the error 0X3?

    System error codes.

    http://msdn.microsoft.com/en-us/library/ms681382.aspx

    Method 1

    Step 1

    Run a System File Checker Scan

    http://support.microsoft.com/kb/929833

    Step 2

    I you are using a robocopy command then try To re-register Robocopy.exe, you need to:

    1. Click Start
    2. Click Run
    3. Type regsvr32 Robocopy.exe
    4. Press Enter
    5. Restart your computer

    If you are still facing issues then please continue to,

    Method 2

    Download the Robo copy tools (Original file intended for Server products, however the specified robocopy files applies to Windows 7 included in the KIT)

    http://download.microsoft.com/download/8/e/c/8ec3a7d8-05b4-440a-a71e-ca3ee25fe057/rktools.exe

    Note: If a compatibility manager shows up click on run program, the install may be dormant however it is tested to be a successful install in Windows 7.

    Please post the results of the troubleshooting.

    Hope this helps

    3 people found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anonymous
    2016-07-21T07:18:40+00:00

    Hi 

    Robocopy has it own Exit Codes, here a link to the exit codes

    http://ss64.com/nt/robocopy-exit.html

    i made a short script to reset the exit codes

    if %ERRORLEVEL% EQU 3 (

    set errorlevel=0

    echo OKCOPY + XTRA

    goto end )

    if %ERRORLEVEL% EQU 2  (

    set errorlevel=0

    echo XTRA

    goto end

    )

    if %ERRORLEVEL% EQU 1 (

    set errorlevel=0

    echo OKCOPY

    goto end

    )

    if %ERRORLEVEL% EQU 0 echo No Change 

    :end

    echo %ERRORLEVEL%

    BR Michael

    8 people found this answer helpful.
    0 comments No comments