Files
Printservice-REST/scripts/uninstall-service.ps1
2026-06-09 22:13:00 +02:00

10 lines
265 B
PowerShell

param([string]$InstallDir = "C:\printservice-app")
Push-Location $InstallDir
if (Test-Path ".\printservice.exe") {
.\printservice.exe stop
.\printservice.exe uninstall
} else {
Write-Host "printservice.exe nicht gefunden. WinSW-Datei pruefen."
}
Pop-Location