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
- Host: GitHub
- URL: https://github.com/refupanker/windows-update-disable-remove
- Owner: REFUPANKER
- Created: 2022-02-02T13:09:55.000Z (over 3 years ago)
- Default Branch: Batch
- Last Pushed: 2023-09-04T18:38:33.000Z (over 1 year ago)
- Last Synced: 2025-01-11T22:24:37.091Z (5 months ago)
- Language: Batchfile
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```
---