1. 🖥️ Check System Performance Settings
Run SystemPropertiesPerformance.exe
to open Performance Options and adjust visual effects for better speed ⚡️.
2. 🔍 Use Resource Monitor
Run resmon
to analyze CPU, Disk, Network, and Memory usage in detail 📊.
3. 📝 List Running Services with PowerShell
Use this command to list currently running services:
Get-Service | Where-Object {$_.Status -eq 'Running'} | Select-Object Name,DisplayName
4. 🚫 Disable Non-Essential Services
Use the following PowerShell script to stop and disable some common non-essential services:
$servicesToDisable = @(
"AdobeARMservice",
"Bonjour Service",
"TeamViewer",
"DiagTrack"
)
foreach ($svc in $servicesToDisable) {
if (Get-Service -Name $svc -ErrorAction SilentlyContinue) {
Stop-Service -Name $svc -Force
Set-Service -Name $svc -StartupType Disabled
Write-Output "🛑 Stopped and disabled service: $svc"
} else {
Write-Output "ℹ️ Service $svc not found or already stopped."
}
}
5. 🔄 Revert Disabled Services
If you want to re-enable those services later, use this script:
$servicesToEnable = @(
"AdobeARMservice",
"Bonjour Service",
"TeamViewer",
"DiagTrack"
)
foreach ($svc in $servicesToEnable) {
if (Get-Service -Name $svc -ErrorAction SilentlyContinue) {
Set-Service -Name $svc -StartupType Manual
Start-Service -Name $svc
Write-Output "✅ Re-enabled and started service: $svc"
} else {
Write-Output "⚠️ Service $svc not found."
}
}
6. 💡 Additional Tips
- 🔄 Keep Windows updated and drivers current.
- 🧹 Use Disk Cleanup regularly.
- ⚙️ Limit startup programs via Task Manager.
- 🛡️ Run antivirus scans routinely.
📌 Summary
With these tools and scripts, you can effectively optimize your PC performance without reinstalling Windows. Remember to create a system restore point before making changes 💾.