https://github.com/erenelagz/windows-update-fix
One click Windows Update Error Fixer Bat file. Just run the file and Restart!
https://github.com/erenelagz/windows-update-fix
batch-script fix windows windows-update
Last synced: 4 months ago
JSON representation
One click Windows Update Error Fixer Bat file. Just run the file and Restart!
- Host: GitHub
- URL: https://github.com/erenelagz/windows-update-fix
- Owner: ErenElagz
- License: mit
- Created: 2024-04-27T13:14:03.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-28T08:44:09.000Z (about 1 year ago)
- Last Synced: 2025-01-06T02:15:14.114Z (5 months ago)
- Topics: batch-script, fix, windows, windows-update
- Language: Batchfile
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Windows Update Fixer Bat Script
Just run the file as a admnistrator. and Restart!
it worked in my laptop and I think it will work in your PC. That's Done.## All Scripts
```bash
SC config trustedinstaller start=auto
net stop bits
net stop wuauserv
net stop msiserver
net stop cryptsvc
net stop appidsvc
Ren %Systemroot%\SoftwareDistribution SoftwareDistribution.old
Ren %Systemroot%\System32\catroot2 catroot2.old
regsvr32.exe /s atl.dll
regsvr32.exe /s urlmon.dll
regsvr32.exe /s mshtml.dll
netsh winsock reset
netsh winsock reset proxy
rundll32.exe pnpclean.dll,RunDLL_PnpClean /DRIVERS /MAXCLEAN
dism /Online /Cleanup-image /ScanHealth
dism /Online /Cleanup-image /CheckHealth
dism /Online /Cleanup-image /RestoreHealth
dism /Online /Cleanup-image /StartComponentCleanup
Sfc /ScanNow
net start bits
net start wuauserv
net start msiserver
net start cryptsvc
net start appidsvc
```