All Tweaks

Essential Tweaks

Services - Set to Manual

Sets unnecessary services to Manual startup.

Benefit

Reduces background CPU/RAM usage

Impact

medium

Commands (1)

Run these commands in an elevated PowerShell window (Run as Administrator). This is exactly what CodeWinOptimizer executes for this tweak.

$svcManual = @('DiagTrack', 'dmwappushservice', 'WerSvc', 'PcaSvc', 'DPS', 'WdiServiceHost', 'WdiSystemHost', 'MapsBroker', 'lfsvc', 'WbioSrvc', 'SensorService', 'SensrSvc', 'TabletInputService', 'Fax', 'WMPNetworkSvc', 'fdPHost', 'FDResPub', 'SSDPSRV', 'upnphost', 'SCardSvr', 'ScDeviceEnum', 'SCPolicySvc', 'PhoneSvc', 'XblAuthManager', 'XblGameSave', 'XboxNetApiSvc', 'XboxGipSvc', 'CDPSvc', 'wisvc'); $svcDisabled = @('RemoteRegistry', 'RetailDemo'); $mDone = 0; $mSkip = 0; foreach ($s in $svcManual) { $svc = Get-Service -Name $s -ErrorAction SilentlyContinue; if (-not $svc) { $mSkip++; continue } try { Set-Service -Name $s -StartupType Manual -ErrorAction Stop; $mDone++ } catch { Write-Host "[WARN] $s : $($_.Exception.Message)" } } $dDone = 0; $dSkip = 0; foreach ($s in $svcDisabled) { $svc = Get-Service -Name $s -ErrorAction SilentlyContinue; if (-not $svc) { $dSkip++; continue } try { Stop-Service -Name $s -Force -ErrorAction SilentlyContinue; Set-Service -Name $s -StartupType Disabled -ErrorAction Stop; $dDone++ } catch { Write-Host "[WARN] $s : $($_.Exception.Message)" } } Write-Host ("[OK] Set to Manual: $mDone service(s), $mSkip not present"); Write-Host ("[OK] Disabled: $dDone service(s), $dSkip not present")

Warnings

  • Some services may be needed by specific hardware

How to revert this tweak

  • In CodeWinOptimizer: disable the tweak again — the app restores the original values it recorded when it was applied.
  • Manually: reverse the change — re-enable the service, delete the registry value you created, or restore the previous value shown when you ran the commands.
  • With System Restore: press Win + R, run rstrui, and select the restore point that was created before the change.

Frequently asked questions

Do I need to restart?

Some changes apply immediately (many registry and network values). Others — services, GPU scheduling, power settings — only take full effect after signing out or restarting. If the change seems to have no effect, restart before troubleshooting.

Will it survive Windows updates?

Most values persist, but major Windows feature updates can reset policies, services and scheduled tasks. After a big update, come back to this page and re-check the tweak — the app also shows the current state before applying anything.

Is it reversible?

Yes. It is a medium-impact change: keep a restore point around before applying it, and revert it from the app or with System Restore if anything feels off.

Can I apply it manually?

Yes — every command listed above is exactly what the app runs. Open PowerShell as Administrator and run them one at a time, checking the output. For a guided flow with a restore point and one-click revert, use the app.

Related tweaks