Probe service control
How to check the status and control the probe service
Windows
Check if Prelude Probe service is running
sc interrogate “Prelude Probe Service”
Stop Prelude Probe service
sc stop "Prelude Probe Service"
Start Prelude Probe service
sc start "Prelude Probe Service"
Restart Prelude Probe service
sc stop "Prelude Probe Service" && sc start "Prelude Probe Service"
Linux (RPM/Deb/Ubuntu)
Check if Prelude Probe service is running
sudo systemctl status detect.service
Stop Prelude Probe service
sudo systemctl stop detect.service
Start Prelude Probe service
sudo systemctl start detect.service
Restart Prelude Probe service
sudo systemctl restart detect.service
macOS
Check if Prelude Probe service is running
sudo launchctl list | grep detect
Stop Prelude Probe service
sudo launchctl disable system/com.preludesecurity.detect
Start Prelude Probe service
sudo launchctl enable system/com.preludesecurity.detect
Restart Prelude Probe service
sudo launchctl kickstart -k system/com.preludesecurity.detect
Updated 14 days ago