test-adv-jboss8/stop-jboss.ps1
2025-03-20 07:12:33 +01:00

22 lines
755 B
PowerShell

# PowerShell script to stop JBoss EAP 8.0
# Configuration
$JBOSS_HOME = "C:\Dev2012\BUILDERS\jboss-eap-8.0"
Write-Host "Stopping JBoss EAP 8.0..." -ForegroundColor Yellow
# Find and stop JBoss process
$jbossProcess = Get-CimInstance Win32_Process -Filter "Name = 'java.exe'" |
Where-Object { $_.CommandLine -like "*jboss.home.dir=$JBOSS_HOME*" }
if ($jbossProcess) {
Write-Host "Found JBoss process (PID: $($jbossProcess.ProcessId))" -ForegroundColor Yellow
Stop-Process -Id $jbossProcess.ProcessId -Force
Write-Host "JBoss process stopped" -ForegroundColor Green
} else {
Write-Host "No JBoss process found running" -ForegroundColor Yellow
}
# Wait a moment to ensure process is fully stopped
Start-Sleep -Seconds 2