How to disable AutoStart of services Data Center Security (DCS)
Follow the below steps :
For WINDOWS
1) Open Command Prompt.
- Click on the Start button, and then select Run.
- Type cmd in the Open field, and then click [OK].
sc config "SISIPSService" start= disabled
sc config "SISIDSService" start= disabled
sc config "SISIPSUtil" start= disabled
For Non-Windows
2) Login as root
1. Check the status of srcmstr.service and ctrmc.service
# systemctl status sisipsagent
# systemctl status sisidsagent
# systemctl status sisipsutil
2. Stop the services.
# systemctl stop sisipsagent
# systemctl stop sisidsagent
# systemctl stop sisipsutil
3. Disable autostart.
# systemctl disable sisipsagent
# systemctl disable sisidsagent
# systemctl disable sisipsutil
4. Check if autostart is disabled.
# systemctl is-enabled sisipsagent
# systemctl is-enabled sisidsagent
# systemctl is-enabled sisipsutil