banner and installer

This commit is contained in:
Ricardo Sardá
2025-12-12 16:08:50 -03:00
parent de93234ec1
commit 5c1824a85a
4 changed files with 180 additions and 1 deletions

View File

@@ -114,7 +114,7 @@ function Run-Agent {
}
function Stop-InteractiveProcesses {
Write-Log "Stopping processes: java/javaw/godot..."
$names = @('java','javaw','godot')
$names = @('java','javaw','godot','openjdk')
foreach ($n in $names) {
try { Stop-Process -Name $n -Force -ErrorAction SilentlyContinue } catch {}
}