??? Safe PC Repair Toolkit

100% free. 100% transparent. Built only with Windows utilities + open-source tools.
No installers. No telemetry. No risk.

How It Works

1. Select a task
2. Review the script
3. Run safely on your PC

? All scripts are plain-text, commented, and verifiable. Always create a restore point first!

?? Optimization & Repair Scripts

?? Clean Temporary Files

Purpose: Removes %TEMP%, Windows temp, and browser cache (Chrome/Edge/Firefox).

Risk: Low

View Script
@echo off
:: Safe Temp Cleaner - SC-USCS.com
:: Uses only built-in Windows commands

echo Cleaning temporary files...
del /q /f /s "%TEMP%\*.*" >nul 2>&1
del /q /f /s "%SystemRoot%\Temp\*.*" >nul 2>&1

:: Browser Caches (optional but common)
rd /s /q "%LOCALAPPDATA%\Google\Chrome\User Data\Default\Cache" 2>nul
rd /s /q "%LOCALAPPDATA%\Microsoft\Edge\User Data\Default\Cache" 2>nul
rd /s /q "%APPDATA%\Mozilla\Firefox\Profiles\*.default-release\cache2" 2>nul

echo Done. Temporary files cleaned.
pause
?? Download clean_temp.bat

SHA-256: 809c0efc7de43a8594acd9db685ad0de69e5a4f07f9fe95a4ea79eaaab7b4d80

??? Repair Corrupted System Files

Purpose: Runs sfc /scannow and dism /online /cleanup-image /restorehealth.

Risk: Low (requires admin)

View Script
@echo off
:: System File Checker + DISM Repair
:: Requires Administrator privileges

echo Checking system file integrity...
sfc /scannow

echo Repairing Windows image...
dism /online /cleanup-image /restorehealth

echo Repair complete. Reboot recommended.
pause
?? Download fix_sfc.bat

SHA-256: 3d6e480b9b331edded2a9647e8d6944534ee8d58832ae984ea1845f1d72229b5

??? Remove Windows Bloatware (Safely)

Purpose: Uninstalls non-essential Microsoft & OEM apps (e.g., Candy Crush, Xbox, etc.) using PowerShell.

Risk: Medium — irreversible; review list first!

View Script
@echo off
:: Safely remove common Windows bloatware
:: Uses built-in PowerShell, no external tools

echo Removing bloatware apps...
powershell -Command ^
"Get-AppxPackage *Microsoft.BingNews* | Remove-AppxPackage; ^
Get-AppxPackage *Microsoft.Xbox* | Remove-AppxPackage; ^
Get-AppxPackage *Microsoft.SkypeApp* | Remove-AppxPackage; ^
Get-AppxPackage *king.com.CandyCrush* | Remove-AppxPackage; ^
Get-AppxPackage *Spotify* | Remove-AppxPackage; ^
echo Bloatware removal complete."

pause
?? Download remove_bloatware.bat

SHA-256: c02e265fc045aba854e4707ff7f211e43f62bdf56b163f0137f32991f7dd0745

?? Reset Network Stack

Purpose: Flushes DNS, resets Winsock, IP, and proxy settings.

Risk: Low

View Script
@echo off
:: Reset Network Stack - Safe & Built-in

echo Resetting network...
ipconfig /flushdns
netsh winsock reset
netsh int ip reset
netsh winhttp reset proxy

echo Network reset complete. Please reboot.
pause
?? Download reset_network.bat

SHA-256: b31d43d080199620ae7fba4b23253998eb634156bbeb5aa8c19949ba72ca1dcb

? Why Trust This Site?

Best Practice: Always scan .bat files with VirusTotal and run in a non-admin console first.

?? Contact (Privacy-Respecting)

Found an issue? Have a script suggestion? We read every message.