kulkutie/hello-world
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
@echo off
chcp 65001 >nul
color 0B
echo.
echo Running Windows Disk Cleanup...
cleanmgr /sagerun:65535
color 0E
echo ---
echo Cleanup completed! Recommended to restart PC to apply all changes
echo ---
echo ---
:ask
set /p restart=Do you need to restart? (y/n):
if /i "%restart%"=="y" (
shutdown /r /t 5
) else if /i "%restart%"=="n" (
echo Restart cancelled
) else (
echo Please enter y or n
goto ask
)
timeout /t 3 >nul