Data Loss Prevention

 View Only
  • 1.  DLP 12.0 Agents Deployment using SSCM

    Posted Dec 26, 2016 07:56 AM

    While deploying DLP 12.0 agents using SSCM, SSCM prompting to restart. Where is manually DLP Client does not requires restart. 

    (1) Is it required to restart when deploying via SSM ? i

    (2) If no, then is it safe to surpress the restart computer? it will not create any issue. 

    (3) How can we surpress or stop restart prompts or stop restart. 

    Thanks

    Ad. 

     



  • 2.  RE: DLP 12.0 Agents Deployment using SSCM

    Broadcom Employee
    Posted Dec 26, 2016 10:56 AM

    For an inital install a reboot is not required. For an upgrade it usualy it required but not always. Supressing the reboot would be set in SCCM under the restart settings on the program. If left at default settings, then it will reboot on its own.



  • 3.  RE: DLP 12.0 Agents Deployment using SSCM
    Best Answer

    Posted Dec 28, 2016 04:34 AM

    I used this in the past for uninstalling the agent via SCCM. Maybe you can modify your .bat file in order to suppress the restart.

     

    msiexec /uninstall {2AF3B399-42A5-42bd-A5E0-72B657110363} /q UNINSTALLPASSWORD=""
    if ERRORLEVEL 3010 goto success
    if ERRORLEVEL 0 goto success
    goto failure
    :success
    set %ERRORLEVEL% = 0
    goto end
    :failure echo Failed
    EXIT 1
    #goto 
    end
    :end

     

    Let me know if this worked for you.