Symantec Data Loss Prevention (DLP) Enforce Services need to be stopped and started in the correct order to avoid system errors.
Create two files DLP_START.bat and DLP_STOP.bat, copy below given lines according to the architecture that customer is using into the respective files.
FOR DLP V15.1 AND LATER VERSIONS
Enforce / Multi-tier Architecture
DLP_STOP.bat
>@echo on
net stop "SymantecDLPDetectionServerController"
net stop "SymantecDLPIncidentPersister"
net stop "SymantecDLPManager"
net stop "SymantecDLPNotifier"
@echo off
pause
exit
DLP_START.bat
@echo on
net start "SymantecDLPNotifier"
net start "SymantecDLPManager"
net start "SymantecDLPIncidentPersister"
net start "SymantecDLPDetectionServerController"
@echo off
pause
exit
Enforce / Single-tier Architecture
DLP_STOP_Single-Tier.bat
@echo on
net stop "SymantecDLPDetectionServer"
net stop "SymantecDLPDetectionServerController"
net stop "SymantecDLPIncidentPersister"
net stop "SymantecDLPManager"
net stop "SymantecDLPNotifier"
@echo off
pause
exit
DLP_START_Single-Tier.bat
@echo on
net start "SymantecDLPNotifier"
net start "SymantecDLPManager"
net start "SymantecDLPIncidentPersister"
net start "SymantecDLPDetectionServerController"
net start "SymantecDLPDetectionServer"
@echo off
pause
exit
Detection / Multi-tier Architecture Only
DLP_START_Detection.bat
@echo on
net start "SymantecDLPDetectionServer"
@echo off
pause
exit
DLP_STOP_Detection.bat
@echo on
net stop "SymantecDLPDetectionServer"
@echo off
pause
exit
FOR DLP V15.0 AND EARLIER, THE SERVICE NAMES ARE AS FOLLOWS
Enforce / Multi-tier Architecture
DLP_START.bat
@echo on
net start "Vontu Notifier"
net start "Vontu Manager"
net start "Vontu Incident Persister"
net start "Vontu Update"
net start "Vontu Monitor Controller"
@echo off
pause
exit
DLP_STOP.bat
@echo on
net stop "Vontu Update"
net stop "Vontu Monitor Controller"
net stop "Vontu Incident Persister"
net stop "Vontu Manager"
net stop "Vontu Notifier"
@echo off
pause
exit
Enforce / Single-tier Architecture
DLP_START_Single-Tier.bat
@echo on
net start "Vontu Notifier"
net start "Vontu Manager"
net start "Vontu Incident Persister"
net start "Vontu Update"
net start "Vontu Monitor Controller"
net start "Vontu Monitor"
@echo off
pause
exit
DLP_STOP_Single-Tier.bat
@echo on
net stop "Vontu Monitor"
net stop "Vontu Monitor Controller"
net stop "Vontu Update"
net stop "Vontu Incident Persister"
net stop "Vontu Manager"
net stop "Vontu Notifier"
@echo off
pause
exit
Detection / Multi-tier Architecture Only
DLP_START_Detection.bat
@echo on
net start "Vontu Monitor"
net start "Vontu Update"
@echo off
pause
exit
DLP_STOP_Detection.bat
@echo on
net stop "Vontu Update"
net stop "Vontu Monitor"
@echo off
pause
exit