Skip to content

windows help

  1. clean-snippts
Dism.exe /online /Cleanup-Image /StartComponentCleanup
Dism.exe /online /Cleanup-Image /StartComponentCleanup /ResetBase
Dism.exe /online /Cleanup-Image /SPSuperseded

Dism.exe /Online /Cleanup-Image /AnalyzeComponentStore
DISM.exe /Online /English /Get-Features /Format:Table
DISM.exe /Online /Disable-Feature /featurename:NAME /Remove
  1. clean-winsxs
dism /Online /Cleanup-Image /AnalyzeComponentStore  # check
dism /online /Cleanup-Image /StartComponentCleanup  # clean
  1. kill process with pid
netstat -ano | findstr "PID :8888"

taskkill /pid [pid-num] /f