九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項(xiàng)超值服

開通VIP
[技術(shù)]關(guān)于重復(fù)安裝VMware虛擬機(jī)提示未完全卸載導(dǎo)致安裝中斷問題之終極解決方案

卸載后重裝到一半的時(shí)候提示:

Error 1316.A network error occurred while attempting to read from the file C:\WINDOWS\Installer\VMware Workstation.msi


強(qiáng)制退出后他安裝的進(jìn)度往后倒退?。。?!

查詢了資料說在注冊(cè)表下找到HKEY_LOCAL_MACHINE-->Software->VMware,inc,把這個(gè)整個(gè)刪除,關(guān)閉注冊(cè)表后,重新運(yùn)行VMware的安裝文件就好了。

試了后這個(gè)提示是沒了,但問題尚在:

Setup has detcted that vmware workstation isadready installed on this machine......

無奈,還是因?yàn)樽?cè)表里的相關(guān)信息沒刪干凈。然而,網(wǎng)上所謂的虛擬機(jī)綠色卸載工具都掛了馬不敢用。悲催地只好做了個(gè)批處理文件,完美卸載!

藉以此文獻(xiàn)給郁悶中的哥們姐們,希望對(duì)大家有所幫助!

 

代碼如下:

cls
@echo off
CLS
color 0a
echo 取消DLL文件的注冊(cè)...
regsvr32 /u /s "%cd%/vmappcfg.dll"
regsvr32 /u /s "%cd%/vmappsdk.dll"
regsvr32 /u /s "%cd%/vmdbCOM.dll"
regsvr32 /u /s "%cd%/vmhwcfg.dll"
regsvr32 /u /s "%cd%\V2V\IntraProcessLogging.dll"
regsvr32 /u /s "%cd%\V2V\reconfig.dll"
regsvr32 /u /s "%cd%\V2V\vhdcvtcom.dll"
regsvr32 /u /s "%cd%\V2V\vmc2vmx.dll"
regsvr32 /u /s "%cd%\V2V\vpcCvt.dll"
echo 正在刪除虛擬網(wǎng)卡,請(qǐng)稍后……
:delete VM Network
start /wait vnetlib -- remove adapter vmnet1
start /wait vnetlib -- remove adapter vmnet8
start /wait vnetlib -- remove dhcp vmnet1
start /wait vnetlib -- remove dhcp vmnet8
start /wait vnetlib -- remove nat vmnet8
:delservice
echo 正在刪除服務(wù)...
call :刪除服務(wù) vmnetbridge
call :刪除服務(wù) VMAuthdService
call :刪除服務(wù) vmx86
call :刪除服務(wù) VMnetAdapter
call :刪除服務(wù) "VMware NAT Service"
call :刪除服務(wù) "VMnetDHCP"
call :刪除服務(wù) VMnetuserif
call :刪除服務(wù) hcmon
call :刪除服務(wù) Vmparport
call :刪除服務(wù) vstor2-ws60
call :刪除服務(wù) vstor2
call :刪除服務(wù) vmkbd
"%cd%\VMMount\vmount2.exe" /Unregserver
netcfg -u vmware_bridge
echo.
:delfile
echo 刪除安裝的文件....
call :刪除文件 %systemroot%\inf\vmnet.sys
call :刪除文件 %systemroot%\inf\vmnetBridge.dll
call :刪除文件 %systemroot%\inf\netbridge.inf
call :刪除文件 %systemroot%\inf\vmnetBridge.sys
call :刪除文件 %systemroot%\inf\vmusb.cat
call :刪除文件 %systemroot%\inf\vmusb.inf
call :刪除文件 %systemroot%\inf\vmusb.sys
call :刪除文件 %systemroot%\inf\netadapter.inf
call :刪除文件 %systemroot%\inf\vmnetAdapter.sys
call :刪除文件 %systemroot%\inf\vnetinst.dll
call :刪除文件 %systemroot%\lastgood\system32\drivers\vmnetadapter.sys
call :刪除文件 %systemroot%\lastgood\system32\drivers\vmnet.sys
call :刪除文件 %systemroot%\lastgood\system32\drivers\vmnetbridge.sys
call :刪除文件 %systemroot%\system32\drivers\vmnetadapter.sys
call :刪除文件 %systemroot%\system32\drivers\vmnet.sys
call :刪除文件 %systemroot%\system32\drivers\vmnetbridge.sys
call :刪除文件 %systemroot%\system32\drivers\vmusb.sys
call :刪除文件 %systemroot%\system32\drivers\hcmon.sys
call :刪除文件 %systemroot%\system32\drivers\vmnetuserif.sys
call :刪除文件 %systemroot%\system32\drivers\vmparport.sys
call :刪除文件 %systemroot%\system32\drivers\vmx86.sys
call :刪除文件 %systemroot%\system32\NETCFG.EXE
call :刪除文件 %systemroot%\system32\choice.exe
call :刪除文件 %systemroot%\system32\devcon.exe

::以下兩句刪除用戶的配置文件(即虛擬機(jī)文件)默認(rèn)不刪除,需要?jiǎng)h除請(qǐng)將下面兩句前面的::去掉
::rd /s /q %APPDATA%\vmware
::rd /s /q "\Virtual Machines"
echo.
:delreg
echo 刪除注冊(cè)表....
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc." /f
:deluser
echo 刪除用戶__vmware_user__...
net user __vmware_user__ /delete
net localgroup __vmware__ /delete

pause>nul|echo 卸載完成......
goto :eof
:刪除文件
echo 正在刪除文件 %*
del /f /q "%*" >nul 2>nul
goto :eof
:刪除服務(wù)
echo 正在刪除服務(wù) %*
net stop %* 2>nul
sc delete %*
goto :eof



 

本站僅提供存儲(chǔ)服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊舉報(bào)
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
VMWare無法安裝解決方法---最簡(jiǎn)單方法徹底刪除VMWare
卸載北信源內(nèi)網(wǎng)桌面監(jiān)控的完全攻略
病毒清除
熊貓燒香—原代碼
59MSDN版Windows XP SP3鏡像集成AHCI驅(qū)動(dòng)程序教程
輕松給注冊(cè)表瘦身
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號(hào)成功
后續(xù)可登錄賬號(hào)暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服