Forum Discussion
CedricRichmond
Sep 18, 2025Iron Contributor
Best pc cleaning software to make my windows 11 run faster?
Hi everyone, I noticed my PC has been getting slower over time. Startup takes longer, apps are lagging, and overall performance isn't what it used to be. I'm thinking of using some tool to clean up...
MaverickNova
Sep 18, 2025Iron Contributor
It is really frustrating to find out the computer is running slow at sometime. Fortunately, there are many ways to fix the issue and free up space in Windows 11 and Windows 10.
Here is a simple script to let you clean up the computer without using any pc cleaning software. All of the tools come with Windows 11 by default.
off
echo Running Disk Cleanup...
cleanmgr /sageset:1
cleanmgr /sagerun:1
echo Clearing Recycle Bin...
powershell -command "Clear-RecycleBin -Force"
echo Running System File Checker...
sfc /scannow
echo Running DISM to repair Windows image...
DISM /Online /Cleanup-Image /RestoreHealth
echo Cleanup complete!
pause