@echo off title "MS Recall sukkz" :choose cls echo ----------------------------- echo - MS Recall - echo - ------------------- - echo - 1) check if running - echo - 2) disable Recall - echo - 3) enable Recall - echo - 4) Exit - echo ----------------------------- CHOICE /C 1234 /M "- Enter Choice =" IF ERRORLEVEL 4 GOTO quit IF ERRORLEVEL 3 GOTO enable IF ERRORLEVEL 2 GOTO disable IF ERRORLEVEL 1 GOTO check :check rem check if Recall is running cls Dism /Online /Get-Featureinfo /Featurename:Recall ping localhost -n 6 >NUL GOTO choose :disable rem disable Recall cls Dism /Online /Disable-Feature /Featurename:Recall ping localhost -n 6 >NUL exit :enable rem enable Recall cls Dism /Online /Enable-Feature /Featurename:Recall ping localhost -n 6 >NUL Exit :quit exit