This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

SCCM Deployment

Is there a best practice for deploying and upgrading the Rapid Recovery Agent in SCCM?

  • I wouldn't say 'best' practice, however it certainly can be done. I have done this though SCCM.

    I create the .cmd to point to the .bat file and the contents looks like this:

    :CheckOS
    IF EXIST "%PROGRAMFILES(X86)%" (GOTO :64BIT) ELSE (GOTO :32BIT)

    :64BIT
    call \\networkpath\6.1.3\Agent-X64-6.1.3.100.exe /silent

    :32BIT
    call \\networkpath\6.1.3\Agent-X86-6.1.3.100.exe /silent