需求:随着安装软件越来越多,计算机后台自启动服务数量也越来越庞大。但是有些服务并不一定需要实时运行。
背景:需要将系统非必需的服务设置为 手动 启动。
复制代码
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128<span style="font-family:Verdana;">@echo off title stop/start windows service :allStart cls echo [1] MySQL echo [2] Apache echo [3] Windows Update echo [4] Oracle echo [5] VMWare echo [e] exit set in= set /p in=please enter the num: if "%in%"=="1" goto mysql if "%in%"=="2" goto apache if "%in%"=="3" goto windowsUpdate if "%in%"=="4" goto Oracle if "%in%"=="5" goto Vmware if "%in%"=="e" goto allClose :mysql cls echo [1] start mysql service echo [2] stop mysql service echo [b] go back echo [e] exit set in= set /p in= please enter the num: if "%in%"=="1" goto mysqlStart if "%in%"=="2" goto mysqlStop if "%in%"=="b" goto allStart if "%in%"=="e" goto allClose :apache cls echo [1] start apache service echo [2] stop apache service echo [b] go back echo [e] exit set in= set /p in= please enter the num: if "%in%"=="1" goto apacheStart if "%in%"=="2" goto apacheStop if "%in%"=="b" goto allStart if "%in%"=="e" goto allClose :windowsUpdate cls echo [1] start windows update service echo [2] stop windows update service echo [b] go back echo [e] exit set in= set /p in= please enter the num: if "%in%"=="1" goto windowsUpdateStart if "%in%"=="2" goto windowsUpdateStop if "%in%"=="b" goto allStart if "%in%"=="e" goto allClose :Oracle cls echo [1] start oralce service echo [2] stop oracle service echo [b] go back echo [e] exit set in= set /p in= please enter the num: if "%in%"=="1" goto oracleStart if "%in%"=="2" goto oracleStop if "%in%"=="b" goto allStart if "%in%"=="e" goto allClose :Vmware cls echo [1] start VMware service echo [2] stop VMware service echo [b] go back echo [e] exit set in= set /p in= please enter the num: if "%in%"=="1" goto VmwareStart if "%in%"=="2" goto VmwareStop if "%in%"=="b" goto allStart if "%in%"=="e" goto allClose :mysqlStart net start MySQL goto allStart :mysqlStop net stop MySQL goto allStart :apacheStart net start Apache2.2 goto allStart :apacheStop net stop Apache2.2 goto allStart :windowsUpdateStart net start wuauserv goto allStart :windowsUpdateStop net stop wuauserv goto allStart :oracleStart net start OracleOraDb11g_home1TNSListener net start OracleServiceORCL net start OracleDBConsoleorcl goto allStart :oracleStop net stop OracleOraDb11g_home1TNSListener net stop OracleServiceORCL net stop OracleDBConsoleorcl goto allStart :VmwareStart net start VMAuthdService net start VMnetDHCP net start "VMware NAT Service" net start VMUSBArbService net start VMwareHostd goto allStart :VmwareStop net stop VMAuthdService net stop VMnetDHCP net stop "VMware NAT Service" net stop VMUSBArbService net stop VMwareHostd goto allStart :allClose echo please enter any key to exit pause exit rem ## how to delete the service in the windows? rem ## sc delete [service name] rem ## windows+R --> cmd --> services.msc</span>
最后
以上就是个性月亮最近收集整理的关于bat脚本 手动启动系统服务的全部内容,更多相关bat脚本内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复