Initialer Commit

This commit is contained in:
2026-06-09 22:13:00 +02:00
commit 1d8ca0b908
68 changed files with 4374 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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