Debug School

Cover image for Win Updates via PS1
Suyash Sambhare
Suyash Sambhare

Posted on

Win Updates via PS1

PowerShell file

cd C:\
sfc /scannow
chkdsk C: /scan /perf
winget upgrade --all
install-Module PSWindowsUpdate -Force
import-Module PSWindowsUpdate
get-WindowsUpdate -Install -AcceptAll
tree
shutdown /r
exit
Enter fullscreen mode Exit fullscreen mode

Art6

Requires reboot

Top comments (0)