An open API service indexing awesome lists of open source software.

https://github.com/refupanker/windows-update-disable-remove

CMD script for disable/remove windows update
https://github.com/refupanker/windows-update-disable-remove

Last synced: 3 months ago
JSON representation

CMD script for disable/remove windows update

Awesome Lists containing this project

README

        

# Windows-Update-Disable-Remove
CMD script for disable/remove windows update
---
##### Requirements
- Start CMD as Admin

---
##### _Windows update - Service name : wuauserv_
---
### Disable Windows Update
```bash
sc config wuauserv start=disabled
```
---
### Delete Update (not recommended)
```bash
sc delete wuauserv
```
---
### Check state of Update
```bash
sc query wuauserv
```
---