Check all non-Apple installed services:
launchctl list | grep -v com.apple
Get active services:
grep -B 1 -A 1 "active count = 1$" <<< "$(launchctl dumpstate)"
Remove unnecessary:
launchctl unload -w /Library/LaunchDaemons/......plist
Reboot.