REM This batch file is used to stop the oracle instance 
REM ******************************************************************
REM ** Batch file used to stop oracle services
REM ******************************************************************
@ECHO off
echo Stopping Oracle Services

REM change the instance/listener names to match what is in your services list

NET STOP "ORACLE ProcMGR V10gR3 with VS2005"
NET STOP "OracleOraDb11g_home1TNSListener"
NET STOP "OracleServiceEPM910"
NET STOP "OracleVssWriterEPM910"
NET STOP "TUXEDO 10gR3 with VS2005 Listener on Port 3050"
echo Oracle Services Stopped
pause