Creating a Process to Remove the WebLogic Admin Console from the Windows Services

Use this procedure to create a process that will remove the WebLogic Admin Console Process from Windows Services.

  1. Create a RemoveWLSSvc.cmd file with these lines:

    echo off
    SETLOCAL
    set DOMAIN_NAME=E1_Apps
    set SERVER_NAME=AdminServer
    call "C:\Oracle\Middleware\wlserver_10.3\server\bin\uninstallSvc.cmd"
    ENDLOCAL
  2. Edit this section of the uninstallSvc.cmd to have the exact service name you have used before. For example, using the example in this guide the lines would be:

    rem *** Uninstall the service
    
    "%WL_HOME%\server\bin\beasvc" -remove -svcname:"Oracle WebLogic %DO-MAIN_NAME%_%SERVER_NAME%"