-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwindows.bat
More file actions
35 lines (34 loc) · 868 Bytes
/
windows.bat
File metadata and controls
35 lines (34 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@echo off
cls
@echo --------------------
@echo.
@echo [*] github: https://github.com/suchsoak
@echo.
@echo --------------------
@echo.
net stop wuauserv
net stop bits
net stop cryptsvc
net stop trustedinstaller
net stop appidsvc
ren %systemroot%\softwaredistribution softwaredistribution.bak
ren %systemroot%\system32\catroot2 catroot2.bak
net start wuauserv
net start bits
net start cryptsvc
net stop trustedinstaller
net start appidsvc
SC config wuauserv start= auto
SC config bits start= auto
SC config cryptsvc start= auto
SC config trustedinstaller start= auto
SC config wuauserv start= auto
SC config bits start= auto
SC config cryptsvc start= auto
SC config trustedinstaller start= auto
@echo.
@echo Verifique nas configuracoes se o windows esta atualizando.
@echo Caso nao esteja reinicie a maquina.
@echo.
@pause
exit