Script Builder

Build a safe Windows repair script

Choose a safe workflow, review each command, then generate a PowerShell or CMD script. WinRepairTools does not run anything on your PC.

Review first

Commands in this workflow

Unchecked commands will be skipped when generating the script.

Get-Process | Sort-Object WorkingSet -Descending | Select-Object ProcessName, Id, @{Name="MemoryMB";Expression={[math]::Round($_.WorkingSet/1MB,1)}} -First 15

Shows running processes using the most memory.

Read-only diagnostic command.
start ms-settings:startupapps

Opens Windows Startup Apps settings so you can disable unnecessary startup apps manually.

Do not disable security, driver, or work-required apps unless you understand them.

Generated script

Generated by the WinRepairTools API. Review every command before running it.