-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesabilitar_servicos.cmd
More file actions
26 lines (26 loc) · 1.03 KB
/
Copy pathdesabilitar_servicos.cmd
File metadata and controls
26 lines (26 loc) · 1.03 KB
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
@echo off
wmic service where name='SysMain' call ChangeStartmode Disabled
sc stop "SysMain"
wmic service where name='wisvc' call ChangeStartmode Disabled
sc stop "wisvc"
wmic service where name='icssvc' call ChangeStartmode Disabled
sc stop "icssvc"
wmic service where name='Fax' call ChangeStartmode Disabled
sc stop "Fax"
wmic service where name='SessionEnv' call ChangeStartmode Disabled
sc stop "SessionEnv"
wmic service where name='TermService' call ChangeStartmode Disabled
sc stop "TermService"
wmic service where name='bthserv' call ChangeStartmode Disabled
sc stop "bthserv"
wmic service where name='TabletInputService' call ChangeStartmode Disabled
sc stop "TabletInputService"
wmic service where name='DiagTrack' call ChangeStartmode Disabled
sc stop "DiagTrack"
wmic service where name='DPS' call ChangeStartmode Disabled
sc stop "DPS"
wmic service where name='DoSvc' call ChangeStartmode Disabled
sc stop "DoSvc"
wmic service where name='WpnService' call ChangeStartmode Disabled
sc stop "WpnService"
pause