@echo off REM Created Feb 13 2008 by Lawrence Dee REM —– REM INSTRUCTIONS: REM This is a script to disable the HP services REM to ease use in a Virtual Machine
REM —– REM – Set services to Manual (=’demand’ in SC) rather than Auto start pause
sc config “Cissesrv” start= demand sc config “CpqNicMgmt” start= demand sc config “CpqRcmc” start= demand sc config “cpqvcagent” start= demand sc config “cqmghost” start= demand sc config “CqMgServ” start= demand sc config “CqMgStor” start= demand sc config “sysdown” start= demand sc config “SysMgmtHp” start= demand
:STOPServices REM – stop services sc stop “Cissesrv” sc stop “CpqNicMgmt” sc stop “CpqRcmc” sc stop “cpqvcagent” sc stop “cqmghost” sc stop “CqMgServ” sc stop “CqMgStor” sc stop “sysdown” sc stop “SysMgmtHp”
pause
GOTO EXIT
REM Notes and descriptions from SC Query
SERVICE_NAME: Cissesrv DISPLAY_NAME: HP Smart Array SAS/SATA Event Notification Service
SERVICE_NAME: CpqNicMgmt DISPLAY_NAME: HP Insight NIC Agents
SERVICE_NAME: CpqRcmc DISPLAY_NAME: HP ProLiant Remote Monitor Service
SERVICE_NAME: cpqvcagent DISPLAY_NAME: HP Version Control Agent
SERVICE_NAME: CqMgServ DISPLAY_NAME: HP Insight Server Agents
SERVICE_NAME: CqMgStor DISPLAY_NAME: HP Insight Storage Agents
SERVICE_NAME: sysdown DISPLAY_NAME: HP ProLiant System Shutdown Service
SERVICE_NAME: SysMgmtHp DISPLAY_NAME: HP System Management Homepage
REM – not listed in SC Query cqmghost.exe HP Insight Foundation Agents :EXIT