17 lines
1.0 KiB
Batchfile
17 lines
1.0 KiB
Batchfile
@echo off
|
|
REM ════════════════════════════════════════════════════════════════
|
|
REM ARIA — Cleanup-Wrapper fuer Windows
|
|
REM ════════════════════════════════════════════════════════════════
|
|
REM Ruft cleanup-windows.ps1 mit ExecutionPolicy Bypass auf.
|
|
REM Funktioniert auch wenn Windows .ps1 direkt nicht startet.
|
|
REM
|
|
REM Nutzung:
|
|
REM cleanup-windows.bat stefan
|
|
REM cleanup-windows.bat stefan -SkipPrune
|
|
REM
|
|
REM Doppelklick funktioniert NICHT (braucht Username als Param).
|
|
REM Per Konsole aufrufen.
|
|
REM ════════════════════════════════════════════════════════════════
|
|
|
|
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0cleanup-windows.ps1" %*
|