-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMSFT_On.cmd
More file actions
19 lines (17 loc) · 574 Bytes
/
MSFT_On.cmd
File metadata and controls
19 lines (17 loc) · 574 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@echo off
rem =====
rem For more information on ScriptTiger and more ScriptTiger scripts visit the following URL:
rem https://scripttiger.github.io/
rem Or visit the following URL for the latest information on this ScriptTiger script:
rem https://github.com/ScriptTiger/Microsoft-Updates
rem =====
echo Enabling Microsoft Updates...
sc config BITS start=delayed-auto
rem sc config DoSvc start=delayed-auto
sc config wuauserv start=auto
net start BITS
rem net start DoSvc
net start wuauserv
wuauclt /updatenow
echo Microsoft Updates are now enabled!
pause