@echo off title CBAM-knop uitschakelen echo. echo De CBAM-knop wordt uitgeschakeld... taskkill /im CBAM_Knop.exe /f >nul 2>&1 powershell -NoProfile -Command "try { Disable-ScheduledTask -TaskName 'CBAM Knop Autostart' -ErrorAction Stop | Out-Null } catch {}" >nul 2>&1 powershell -NoProfile -Command "$p=[Environment]::GetFolderPath('Startup')+'\CBAM Knop.lnk'; if (Test-Path $p) { Remove-Item $p -Force }" >nul 2>&1 echo Klaar! De knop is uit en start niet meer met Windows. echo Terugzetten? Gebruik 'Knop weer activeren' in de handleiding. echo. echo Dit venster sluit vanzelf... timeout /t 5 >nul exit