VMware 6.5自启动
VMware Workstation V6.5.0 Build 118166完整安装后任务栏始终显示VMware 6.5徽标
虽然可以隐藏,但是进程还是存在,去除启动项,重启还是会出现。
用下面的方法可以去掉了,(用的时候再启动)
关闭VMware的四个服务,删除vmware-tray.exe启动项
用批处理来完成
bat文件:http://www.live-share.com/files/365052/vm.bat.html
code:
——————————————————————————————————-
@echo off
cls
echo 用于VMware Workstation V6.5.0 Build 118166,其他版本请修改
echo 按”1″开启
echo 按”2″关闭
echo.
SET slect=0
SET /P slect=输入1 or 2:
IF /I ‘%slect:~0,1%’==’1′ GOTO 1
IF /I ‘%slect:~0,1%’==’2′ GOTO 2
exit
:1
echo 服务设置
sc config ufad-ws60 start= AUTO
sc config VMAuthdService start= AUTO
sc config “VMware NAT Service” start= AUTO
sc config VMnetDHCP start= AUTO
echo 服务设置成功 开始启动服务
net start ufad-ws60 Service
net start VMAuthdService Service
net start “VMware NAT Service”
net start VMnetDHCP Service
echo 服务启动成功
echo 启动 vmware-tray.exe
start “E:Program FilesVMwareVMware Workstationvmware-tray.exe”
echo OK
echo OK 运行完毕
echo 按任意键退出
pause>nul
exit
:2
echo 停止服务
net stop ufad-ws60
net stop VMAuthdService
net stop “VMware NAT Service”
net stop VMnetDHCP
echo 停止服务成功
sc config ufad-ws60 start= DISABLED
sc config VMAuthdService start= DISABLED
sc config “VMware NAT Service” start= DISABLED
sc config VMnetDHCP start= DISABLED
taskkill /f /t /im vmware-tray.exe
echo OK
echo 删除启动项
reg delete HKLMSOFTWAREMicrosoftWindowsCurrentVersionRun /v “vmware-tray” /f
echo 删除成功
echo OK 运行完毕
echo 按任意键可退出
pause>nul
exit
—————————————————————————————————————–
Categories: 软件 标签:vmware, 启动 Post a Comment