零全零美(www.zzgwt.com)
生活中的很多事情,并不像If...Else那么简单!
posts - 96,comments - 52,trackbacks - 0
 内存越来越大,装的程序也越来越多,平时工作时Myeclipse、PowerDesigner、Dreamweaver、Tomcat、Plsqldev开了一大堆!很多经常用,但又不是每次都用到的程序,如Oracle、Mysql、VMware,设置自启动太浪费内存,设置为手动有必须每次一个一个的找到分别启动,很是麻烦!

     这个批处理(以VMware为例)可以让你动动鼠标即可以自动开启和关闭服务!

@echo off

for /"skip=3 tokens=4" %%i in ('sc query VMAuthdService'do set "zt=%%i" &goto :next 

:next 
if /"%zt%"=="RUNNING" ( 
    
goto stop
else ( 
    
goto start

pause 


:stop
    set 
/p input=the VMware service is running now ,do you want to stop it? (y or other for yes,n for no,default for y):
    
if /"%input%" == "n" (
        
goto :eof
    )
net stop 
"VMware Authorization Service"
net stop 
"VMware DHCP Service"
net stop 
"VMware NAT Service"
net stop 
"VMware Virtual Mount Manager Extended"
pause
goto :eof

:start
    set 
/p input=the VMware service is stoped now ,do you want to start it? (y or other for yes,n for no,default for y): 
    
if /"%input%" == "n" (
        
goto :eof
    )
net start 
"VMware Authorization Service"
net start 
"VMware DHCP Service"
net start 
"VMware NAT Service"
net start 
"VMware Virtual Mount Manager Extended"
pause
goto :eof
posted on 2009-11-23 11:30 零全零美 阅读(784) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航: