吾爱汇编

 找回密码
 立即注册

QQ登录

绑定QQ避免忘记帐号

查看: 4842|回复: 9

[原创逆向视频] VMware 11制作逆向版教程

 关闭 [复制链接]
wwe杨云VGe 发表于 2014-12-4 00:37 | 显示全部楼层 |阅读模式

本帖最后由 wwe杨云VGe 于 2014-12-4 08:48 编辑

前天官网发布了最新版的VMware-workstation-full-11.0.0-2305329,今天就制件了一个逆向版的,看下面吧
没精简任何文件,
2014-12-04_002041.gif

2014-12-04_002025.gif

2014-12-04_001548.gif

2014-12-04_001559.gif

2014-12-04_001945.gif

新建三个记事本文档,,,!)安装VMware  !)卸载VMware  安装服务  把下面的复制到文档内另存为***.cmd
!)安装VMware 的内容为
cls
@echo off
CLS
color 0a
Title █████VMware 11.0.0-2305329 绿色中文版吾爱汇编论坛 wwe杨云VGe█████
set vmbit=
if "%PROCESSOR_ARCHITECTURE%" neq "x86" set vmbit=64
echo 提示:最好在安装之前,先运行一下"!)卸载VMware.cmd"文件,以免旧版本干扰新版本安装
echo.
echo 注意:
echo 运行此批处理文件后,安装过程持续十几秒钟,并将跳出VMware服务安装窗口.
echo 如果窗口一闪而过,说明安装过程中出了错误.
echo 未正确安装VMware将导致虚拟机运行出错.
echo 请先排除故障后再次运行"!)安装VMware.cmd"批处理文件进行安装.
echo.
echo 吾爱汇编论坛 VMware&pause>nul
reg query "HKLM\SOFTWARE\VMware, Inc." >nul 2> install.log || reg query "HKLM\SOFTWARE\Wow6432Node\VMware, Inc." >nul 2>> install.log&&(echo.&echo  系统中已经安装了VMware,请先卸载干净并重启电脑!!!&pause>nul&exit)
cls
net user %USERNAME% | find "Administrators" || call :prompt
echo ................
echo 正在安装VMware 11.0.0-2305329绿色精简中文版,请稍后...
echo ................
echo.
echo 删除目录 >> install.log
rd /s /q "%AllUsersProfile%\VMware" >nul 2>> install.log
rd /s /q "%AllUsersProfile%\Application Data\VMware" >nul 2>> install.log
rd /s /q "%AppData%\VMware" >nul 2>> install.log||del /f /s /q "%AppData%\VMware" >nul 2>> install.log
echo. >> install.log
echo 创建目录 >> install.log
ver|find "6.">nul && (set profilepath=%AllUsersProfile%)
ver|find "5.">nul && (set profilepath=%AllUsersProfile%\Application Data)
md "%AppData%\VMware" >nul
if %errorlevel% neq 0 echo 创建目录失败,请关闭杀毒软件或者HIPS后再重新安装VMware&pause>nul&exit
md "%profilepath%\VMware" >nul 2>> install.log
md "%profilepath%\VMware\VMware Workstation" >nul 2>> install.log
md "%profilepath%\VMware\VMware Player" >nul
md "%profilepath%\VMware\VMware USB Arbitration Service" >nul

echo. >> install.log
echo 添加注册表 >> install.log
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\vmware.exe" /ve /d "%cd%\\vmware.exe" /f >nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\vmware.exe" /v Path /t REG_SZ /d "%cd%\\" /f >nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\vmplayer.exe" /ve /d "%cd%\\vmplayer.exe" /f >nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\vmplayer.exe" /v Path /t REG_SZ /d "%cd%\\" /f >nul

if "%PROCESSOR_ARCHITECTURE%" neq "x86" goto _64
goto _86

:_64
set vmbit=64
echo.
echo 64位安装 >> install.log
cd /d "%~dp0"
if not exist "%cd%\64Drv" (echo.&echo  64Drv文件夹不存在或者已被删除,安装文件不全,请下载完整版!!!&pause>nul&exit)
echo 添加注册表项目...
regedit /s "%cd%\vm64.reg"
reg query "HKLM\SOFTWARE\Wow6432Node\VMware, Inc.\Installer" >nul 2>> install.log||(echo.&echo 注册表文件vm64.reg导入失败,请关闭杀毒软件或者HIPS后再重新安装VMware&rd /s /q "%AppData%\VMware"&rd /s /q "%profilepath%\VMware"&pause>nul&exit)
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\VMware, Inc.\Installer\VMware Workstation\Features" /v core /t REG_SZ /d "%cd%" /f >nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\VMware, Inc.\VMware Player" /v InstallPath /t REG_SZ /d "%cd%\\" /f >nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\VMware, Inc.\VMware Player" /v InstallPath64 /t REG_SZ /d "%cd%\x64\\" /f >nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\VMware, Inc.\VMware Workstation" /v InstallPath /t REG_SZ /d "%cd%\\" /f >nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\VMware, Inc.\VMware Workstation" /v InstallPath64 /t REG_SZ /d "%cd%\x64\\" /f >nul
echo 安装VC运行库 >> install.log
reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{4B6C7001-C7D6-3710-913E-5BC23FCE91E6} >nul 2>nul||reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{5FCE6D76-F5DC-37AB-B2B8-22AB8CEDB1D4} >nul 2>nul||(echo.&echo 正在安装VC++2008......&start /wait vc08x64.exe /q&&start /wait vc08x86.exe /q)
copy /y 64Drv\*.* >nul

ver|find "5.">nul && (
copy /y 64Drv\bridge\_vmnetbridge.cat_xp_64 .\vmnetBridge.cat >nul
copy /y 64Drv\bridge\_vmnetBridge.dll_xp_64 .\vmnetBridge.dll >nul
copy /y 64Drv\bridge\_vmnetBridge.sys_xp_64 .\vmnetBridge.sys >nul
)
ver|find "6.">nul && (
copy /y 64Drv\bridge\_vmnetbridge.cat_vista_64 .\vmnetBridge.cat >nul
copy /y 64Drv\bridge\_vmnetBridge.dll_vista_64 .\vmnetBridge.dll >nul
copy /y 64Drv\bridge\_vmnetBridge.sys_vista_64 .\vmnetBridge.sys >nul
)

copy /y vmci\x64\* .\ >nul
move /y vsocklib32.dll "%WinDir%\SysWOW64\vsocklib.dll" >nul 2>> install.log
move /y vsocklib64.dll "%WinDir%\System32\vsocklib.dll" >nul

echo.
goto install

:_86
echo.
echo 32位安装 >> install.log
cd /d "%~dp0"
if not exist "%cd%\86Drv" (echo.&echo  86Drv文件夹不存在或者已被删除,安装文件不全,请下载完整版!!!&pause>nul&exit)
echo 添加注册表项目...
regedit /s "%cd%\vm86.reg"
reg query "HKLM\SOFTWARE\VMware, Inc.\Installer" >nul 2>> install.log||(echo.&echo 注册表文件vm86.reg导入失败,请关闭杀毒软件或者HIPS后再重新安装VMware&rd /s /q "%AppData%\VMware"&rd /s /q "%profilepath%\VMware"&pause>nul&exit)
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\Installer\VMware Workstation\Features" /v core /t REG_SZ /d "%cd%" /f >nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\VMware Player" /v InstallPath /t REG_SZ /d "%cd%\\" /f >nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\VMware Workstation" /v InstallPath /t REG_SZ /d "%cd%\\" /f >nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\VMware Workstation" /v DATASTORE_PATH /t REG_SZ /d "%cd%\VOS" /f >nul
echo 安装VC运行库 >> install.log
reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{1F1C2DFC-2D24-3E06-BCB8-725134ADF989} >nul 2>nul||reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{86CE1746-9EFF-3C9C-8755-81EA8903AC34} >nul 2>nul||reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{9BE518E6-ECC6-35A9-88E4-87755C07200F} >nul 2>nul||(echo.&echo 正在安装VC++2008......&vc08x86.exe /q)
copy /y 86Drv\*.* >nul

ver|find "5.">nul && (
copy /y 86Drv\bridge\_vmnetbridge.cat_xp .\vmnetBridge.cat >nul
copy /y 86Drv\bridge\_vmnetBridge.dll_xp .\vmnetBridge.dll >nul
copy /y 86Drv\bridge\_vmnetBridge.sys_xp .\vmnetBridge.sys >nul
)
ver|find "6.">nul && (
copy /y 86Drv\bridge\_vmnetbridge.cat_vista32 .\vmnetBridge.cat >nul
copy /y 86Drv\bridge\_vmnetBridge.dll_vista32 .\vmnetBridge.dll >nul
copy /y 86Drv\bridge\_vmnetBridge.sys_vista32 .\vmnetBridge.sys >nul
)

copy /y vmci\x86\* .\ >nul
move /y vsocklib.dll "%WinDir%\System32\vsocklib.dll" >nul
echo.

:install
str.exe preferences.ini 0 0 /R /asc:"VMwareDir" /asc:"%cd%" /A >nul 2>> install.log
str.exe environments.xml 0 0 /R /asc:"VMwareDir" /asc:"%cd%" /A >nul 2>> install.log
echo 复制文件...
echo.
copy /y preferences.ini "%AppData%\VMware\" >nul 2>> install.log
copy /y vmconfig.ini "%profilepath%\VMware\VMware Workstation\config.ini" >nul 2>> install.log
copy /y settings.ini "%profilepath%\VMware\VMware Player\" >nul
copy /y settings.ini "%profilepath%\VMware\VMware Workstation\" >nul
copy /y vpconfig.ini "%profilepath%\VMware\VMware Player\config.ini" >nul
copy /y vnetinst.dll "%WinDir%\System32\" >nul 2>> install.log
copy /y vnetlib%vmbit%.dll "%WinDir%\System32\" >nul 2>> install.log
move /y vsock.sys "%WinDir%\system32\drivers\" >nul 2>> install.log
echo.

echo 注册所需的DLL文件...
regsvr32 /s vmappcfg.dll
regsvr32 /s vmappsdk.dll
regsvr32 /s vmdbCOM.dll
regsvr32 /s vmdkShellExt.dll
regsvr32 /s elevated.dll
echo.
echo 创建 __vmware_user__ 用户组 >> install.log
echo 创建 __vmware_user__ 用户组 ...
net localgroup users __vmware_user__ /del >nul 2>nul
net localgroup __vmware__ /del >nul 2>nul
net user __vmware_user__ /del >nul 2>nul
echo.
net localgroup __vmware__ /add /comment:"VMware User Group" >nul 2>> install.log
if %errorlevel% neq 0 echo 用户组创建失败,请关闭杀毒软件或者HIPS后再重新安装VMware&pause>nul&exit

echo 安装VM基本服务 ...
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VMware\Performance" /v Library /t REG_SZ /d "%cd%\vmPerfmon.dll" /f >nul

sc create vsock type= kernel start= boot binpath= "%WinDir%\system32\drivers\vsock.sys" Group= "System Bus Extender" displayname= "vSockets Driver"
if not exist "%WinDir%\System32\Drivers\vsock.sys" copy /y vsock.sys "%WinDir%\System32\Drivers\"

net stop vmx86 >nul 2>> install.log
sc delete vmx86 >nul 2>> install.log
start /wait vnetlib%vmbit%.exe -- install vmx86
start /wait vnetlib%vmbit%.exe -- start vmx86

net stop vmx86 >nul 2>> install.log
net start vmx86 >nul 2>> install.log
if %errorlevel% neq 0 echo 服务启动失败,请关闭杀毒软件或者HIPS后,再运行"卸载VMware.cmd"清理安装记录,然后重新安装VMware&pause>nul&exit

net stop vmci >nul 2>> install.log
sc delete vmci >nul 2>> install.log

if "%PROCESSOR_ARCHITECTURE%" equ "x86" (DrvInst.exe -install "ROOT\VMWVMCIHOSTDEV" .\vmci.inf >nul)
if "%PROCESSOR_ARCHITECTURE%" neq "x86" (DrvInst64.exe installRootDriver HWND "ROOT\VMWVMCIHOSTDEV" .\vmci.inf "" >nul)

vnetlib%vmbit%.exe -- install vmci
net start vsock >nul 2>> install.log

echo.
echo 创建快捷方式
mshta VBScript:Execute("Set a=CreateObject(""WScript.Shell""):Set b=a.CreateShortcut(a.SpecialFolders(""AllUsersDesktop"") & ""\VMware.lnk""):b.TargetPath=""%~dp0vmware.exe"":b.WorkingDirectory=""%~dp0\"":b.Save:close") >nul

mshta VBScript:Execute("Set a=CreateObject(""WScript.Shell""):Set b=a.CreateShortcut(a.SpecialFolders(""AllUsersDesktop"") & ""\vmplayer.lnk""):b.TargetPath=""%~dp0vmplayer.exe"":b.WorkingDirectory=""%~dp0\"":b.Save:close") >nul
echo.
echo.
echo.
echo 请注意上面错误提示,若安装后无法正常运行VMware,
echo 请把上面的错误提示复制下来反馈到我的帖子里,谢谢.
echo 按任意键继续安装VMware服务.
echo 吾爱汇编论坛 wwe杨云VGe
pause >nul

:ST
CALL "安装服务.cmd"
:EX
exit

:prompt
echo ..................
echo 提示:
echo 登录系统的并非是Administrators管理员组的用户,
echo 安装VMware精简版请切换到管理员用户进行安装!
echo 在管理员用户下使用右键--以管理员身份运行
echo 此批处理文件进行安装.
echo ..................
pause
goto :EX


!)卸载VMware的内容为
cls
@echo off
CLS
color 0a
Title 卸载 VMware 吾爱汇编论坛 wwe杨云VGe QQ;314480681
set vmbit=
if "%PROCESSOR_ARCHITECTURE%" neq "x86" set vmbit=64

echo 你确定要卸载 VMware 吗?
echo 按任意键继续卸载 VMware !!!&pause>nul

echo 正在删除服务和设备,可能需要几分钟,请稍后...
echo 如果三分钟后还没动静,请在卸载批处理上敲一下回车键后继续等待...

cd /d "%~dp0"
vnetlib%vmbit%.exe -- stop authd >nul 2>nul
vnetlib%vmbit%.exe -- uninstall authd >nul 2>nul
net stop VMAuthdService >nul 2>nul
sc delete VMAuthdService >nul 2>nul
net stop VMwareHostd >nul 2>nul
sc delete VMwareHostd >nul 2>nul

vnetlib%vmbit%.exe -- stop dhcp >nul 2>nul
vnetlib%vmbit%.exe -- uninstall dhcp >nul 2>nul
vnetlib%vmbit%.exe -- stop nat >nul 2>nul
vnetlib%vmbit%.exe -- uninstall nat >nul 2>nul
vnetlib%vmbit%.exe -- stop bridge >nul 2>nul
vnetlib%vmbit%.exe -- uninstall bridge >nul 2>nul
vnetlib%vmbit%.exe -- stop userif >nul 2>nul
vnetlib%vmbit%.exe -- uninstall userif >nul 2>nul
vnetlib%vmbit%.exe -- stop adapter >nul 2>nul
vnetlib%vmbit%.exe -- uninstall adapter >nul 2>nul
rundll32 vnetlib%vmbit%.dll,VNL_RemoveAllNetworkDevices

net stop VMUSBArbService >nul 2>nul
sc delete VMUSBArbService >nul 2>nul
vnetlib%vmbit%.exe -- stop usb
vnetlib%vmbit%.exe -- uninstall usb
vnetlib%vmbit%.exe -- stop hcmon >nul 2>nul
vnetlib%vmbit%.exe -- uninstall hcmon >nul 2>nul

net stop vstor2-mntapi20-shared >nul 2>nul
sc delete vstor2-mntapi20-shared >nul 2>nul

vnetlib%vmbit%.exe -- stop vmkbd >nul 2>nul
vnetlib%vmbit%.exe -- uninstall vmkbd >nul 2>nul
net stop vmkbd >nul 2>nul
sc delete vmkbd >nul 2>nul

vnetlib%vmbit%.exe -- stop vmparport >nul 2>nul
vnetlib%vmbit%.exe -- uninstall vmparport >nul 2>nul

ver|find "5.">nul && (DrvInst.exe -uninstall "ROOT\VMWVMCIHOSTDEV" 0 >nul 2>nul)
ver|find "6.">nul && (devcon%vmbit%.exe remove "ROOT\VMWVMCIHOSTDEV" >nul 2>nul)

vnetlib%vmbit%.exe -- stop vsock >nul 2>nul
net stop vsock >nul 2>nul
sc delete vsock >nul 2>nul

vnetlib%vmbit%.exe -- stop vmx86 >nul 2>nul
vnetlib%vmbit%.exe -- uninstall vmx86 >nul 2>nul

vnetlib%vmbit%.exe -- uninstall vmci
echo.

echo 取消DLL文件的注册...
regsvr32 /u /s "%cd%\vmappcfg.dll"
regsvr32 /u /s "%cd%\vmappsdk.dll"
regsvr32 /u /s "%cd%\vmdbCOM.dll"
regsvr32 /u /s "%cd%\elevated.dll"
echo.

echo 删除注册表....
reg delete "HKEY_CURRENT_USER\SOFTWARE\ThinPrint" /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\ThinPrint" /f >nul 2>nul
reg delete "HKEY_CURRENT_USER\SOFTWARE\VMware, Inc." /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc." /f >nul 2>nul
reg delete "HKEY_CURRENT_USER\Software\Wow6432Node\VMware, Inc." /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\Software\Wow6432Node\VMware, Inc." /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Drivers32" /f /v "VIDC.VMnc" >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VMware" /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\vmware.exe" /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\vmplayer.exe" /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\A57F49D06AE015943BFA1B54AFE9506C" /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\7A26F0EA2A1AF704F9C48439B99DDAD8" /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\7A79579133DA8984D9E8376086814B46" /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\A116201D664610145AD115603930CA56" /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\BC78C1BA70810FC44B2CEC1EC481DC4B" /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\C3839DFF5D1079849A4534FA95A9DE03" /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\DBBFB30076C6E9142AD4D0ACCFA32594" /f >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /f /v "vmware-tray" >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Run" /f /v "vmware-tray" >nul 2>nul
reg delete "HKEY_CLASSES_ROOT\Installer\Products\7A26F0EA2A1AF704F9C48439B99DDAD8" /f >nul 2>nul
reg delete "HKEY_CLASSES_ROOT\Installer\Products\7A79579133DA8984D9E8376086814B46" /f >nul 2>nul
reg delete "HKEY_CLASSES_ROOT\Installer\Products\A116201D664610145AD115603930CA56" /f >nul 2>nul
reg delete "HKEY_CLASSES_ROOT\Installer\Products\A57F49D06AE015943BFA1B54AFE9506C" /f >nul 2>nul
reg delete "HKEY_CLASSES_ROOT\Installer\Products\BC78C1BA70810FC44B2CEC1EC481DC4B" /f >nul 2>nul
reg delete "HKEY_CLASSES_ROOT\Installer\Products\C3839DFF5D1079849A4534FA95A9DE03" /f >nul 2>nul
reg delete "HKEY_CLASSES_ROOT\Installer\Products\DBBFB30076C6E9142AD4D0ACCFA32594" /f >nul 2>nul
echo.

echo 删除文件...
rmdir /s /q "%AllUsersProfile%\Application Data\VMware" >nul 2>nul
rmdir /s /q "%AppData%\VMware" >nul 2>nul
rmdir /s /q "%CommonProgramFiles%\VMware" >nul 2>nul
IF "%PROCESSOR_ARCHITECTURE%" neq "x86" rmdir /s /q "%CommonProgramFiles(x86)%\VMware" >nul 2>nul
del /f /q "%WinDir%\system32\vmnc.dll" >nul 2>nul
del /f /q "%WinDir%\SysWOW64\vmnc.dll" >nul 2>nul
del /f /q "%WinDir%\system32\vnetinst.dll" >nul 2>nul
del /f /q "%WinDir%\system32\vnetlib*.dll" >nul 2>nul
del /f /q "%windir%\system32\drivers\vstor2-mntapi20-shared.sys" >nul 2>nul
del /f /q "%WinDir%\SysWOW64\drivers\vstor2-mntapi20-shared.sys" >nul 2>nul
del /f /q "%AllUsersProfile%\桌面\VMware.lnk" >nul 2>nul
del /f /q "%AllUsersProfile%\Desktop\VMware.lnk" >nul 2>nul
del /f /q "%USERPROFILE%\桌面\VMware.lnk" >nul 2>nul
del /f /q "%USERPROFILE%\Desktop\VMware.lnk" >nul 2>nul
del /f /q "%PUBLIC%\Desktop\VMware.lnk" >nul 2>nul
del /f /q "%WinDir%\system32\drivers\vmnet*.sys" >nul 2>nul
del /f /q "%WinDir%\system32\drivers\vmparport.sys" >nul 2>nul
del /f /q "%WinDir%\system32\drivers\VMkbd.sys" >nul 2>nul
del /f /q "%WinDir%\system32\drivers\vmx86.sys" >nul 2>nul
del /f /q "%WinDir%\system32\drivers\vmusb.sys" >nul 2>nul
del /f /q "%WinDir%\system32\drivers\vmci.sys" >nul 2>nul
del /f /q "%WinDir%\system32\vmnetdhcp.exe" >nul 2>nul
del /f /q "%WinDir%\system32\vmnat.exe" >nul 2>nul
del /f /q "%WinDir%\system32\vmnetbridge.dll" >nul 2>nul
del /f /q "%WinDir%\SysWOW64\vmnetdhcp.exe" >nul 2>nul
del /f /q "%WinDir%\SysWOW64\vmnat.exe" >nul 2>nul
echo.

echo 删除 __vmware_user__ 账户和用户组 ...
net localgroup users __vmware_user__ /del >nul 2>nul
net localgroup __vmware__ /del >nul 2>nul
net user __vmware_user__ /del >nul 2>nul
echo.

echo 恢复配置文件...
ver|find "6.">nul && (set profilepath=%AllUsersProfile%)
ver|find "5.">nul && (set profilepath=%AllUsersProfile%\Application Data)
start /wait str.exe preferences.ini 0 0 /R /asc:"%cd%" /asc:"VMwareDir" /A >nul 2>nul
start /wait str.exe environments.xml 0 0 /R /asc:"%cd%" /asc:"VMwareDir" /A >nul 2>nul

start /wait str.exe "%profilepath%\VMware\hostd\config.xml" 0 0 /R /asc:"%cd%" /asc:"VMwareDir" /A >nul 2>nul
start /wait str.exe "%profilepath%\VMware\hostd\datastores.xml" 0 0 /R /asc:"%cd%" /asc:"VMwareDir" /A >nul 2>nul
start /wait str.exe "%profilepath%\VMware\hostd\stats\hostAgentStats.xml" 0 0 /R /asc:"%profilepath%\VMware" /asc:"hostdDir" /A >nul 2>nul
start /wait str.exe "%profilepath%\VMware\hostd\config.xml" 0 0 /R /asc:"%profilepath%\VMware" /asc:"hostdDir" /A >nul 2>nul

net stop "VMware NAT Service" >nul 2>nul&&sc delete "VMware NAT Service" >nul 2>nul
net stop VMnetDHCP >nul 2>nul&&sc delete VMnetDHCP >nul 2>nul
net stop VMnetAdapter >nul 2>nul&&sc delete VMnetAdapter >nul 2>nul
net stop vmusb >nul 2>nul&&sc delete vmusb >nul 2>nul
net stop VMnetBridge >nul 2>nul&&sc delete VMnetBridge >nul 2>nul
net stop vmci >nul 2>nul&&sc delete vmci >nul 2>nul
echo.
sc delete "vstor2-mntapi20-shared" >nul 2>nul
sc delete "VMparport" >nul 2>nul
sc delete VMUSBArbService >nul 2>nul
sc delete VMnetDHCP >nul 2>nul
sc delete "VMware NAT Service" >nul 2>nul
sc delete VMAuthdService >nul 2>nul
sc delete VMnetuserif >nul 2>nul
sc delete VMnetAdapter >nul 2>nul
sc delete vmkbd >nul 2>nul
sc delete vmx86 >nul 2>nul
echo.
pause>nul|echo 卸载完成,最好重新启动一下计算机,因为有些驱动可能需要重启后才能删除......
exit


安装服务 的内容为
cls
@ECHO OFF
CLS
color 0a
Title 安装 VMware Workstation 服务 吾爱汇编论坛 wwe杨云VGe QQ;314480681
set vmbit=
IF "%PROCESSOR_ARCHITECTURE%" neq "x86" set vmbit=64

:menu
cls
echo.
echo          精简版相关服务安装 主菜单
echo         ===========================
echo.
echo         0、一键安装所有服务(USB、Hostd和虚拟打印机服务请另外安装)
echo         1、网络功能
echo         2、USB设备支持服务
echo         3、磁盘映射功能
echo         4、授权服务(Unity宿主化与后台运行必装)
echo         5、虚拟打印机服务
echo         6、共享虚拟机和远程访问服务(Hostd服务)
echo         7、安装增强虚拟键盘驱动
echo         8、安装结果检测并生成install.log日志(用于排错)
echo         e、退   出
echo.
echo         提示:0-7项不安装或全部禁用即为最小模式
:cl
echo.
set /p choice=         请选择要进行的操作,然后按回车:
IF NOT "%choice%"=="" SET choice=%choice:~0,1%
if /i "%choice%"=="0" goto s0
if /i "%choice%"=="1" goto s1
if /i "%choice%"=="2" goto s2
if /i "%choice%"=="3" goto s3
if /i "%choice%"=="4" goto s4
if /i "%choice%"=="5" goto s5
if /i "%choice%"=="6" goto s6
if /i "%choice%"=="7" goto s7
if /i "%choice%"=="8" goto chkinfo
if /i "%choice%"=="e" goto EX

echo.
echo         选择无效,请重新输入
echo.
goto cl

:s0
:s0cl
echo.
set /p no=         请再次确认是否安装全部服务 Y(开始安装)或 N(退出安装):
echo.
if /I "%no%"=="y" goto ks
if /I "%no%"=="n" exit
echo         输入错误,请重新输入...
goto s0cl
:ks
cls
echo         正在安装,请稍后...
cd /d "%~dp0"
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMnetBridge >nul 2>nul&&(echo.&echo 请先卸载干净再安装!!!&pause>nul&goto MENU)
reg query HKLM\SYSTEM\CurrentControlSet\Services\vmnetuserif >nul 2>nul || (vnetlib%vmbit%.exe -- install userif)

rundll32 setupapi,InstallHinfSection _Install1.NT 128 .\netadapter.inf >nul
start /wait vnetlib%vmbit%.exe -- install bridge
start /wait vnetlib%vmbit%.exe -- start bridge

start /wait vnetlib.exe -- install dhcp
start /wait vnetlib.exe -- start dhcp

net start Dhcp >nul 2>nul

start /wait vnetlib.exe -- add adapter vmnet1
start /wait vnetlib.exe -- add dhcp vmnet1
start /wait vnetlib.exe -- set vnet vmnet1 addr 10.10.10.0
start /wait vnetlib.exe -- stop dhcp
start /wait vnetlib.exe -- update dhcp vmnet1
start /wait vnetlib.exe -- start dhcp
start /wait vnetlib.exe -- update adapter vmnet1

start /wait vnetlib.exe -- install nat

start /wait vnetlib.exe -- add adapter vmnet8
start /wait vnetlib.exe -- add dhcp vmnet8
start /wait vnetlib.exe -- add nat vmnet8
start /wait vnetlib.exe -- set vnet vmnet8 addr 192.168.128.0
start /wait vnetlib.exe -- stop nat
start /wait vnetlib.exe -- stop dhcp
start /wait vnetlib.exe -- update dhcp vmnet8
start /wait vnetlib.exe -- start dhcp
start /wait vnetlib.exe -- update nat vmnet8
start /wait vnetlib.exe -- start nat
start /wait vnetlib.exe -- update adapter vmnet8

start /wait vnetlib.exe -- install authd
start /wait vnetlib.exe -- start authd
net start VMAuthdService >nul 2>nul

IF "%PROCESSOR_ARCHITECTURE%" neq "x86" goto 64d else goto 86d
:86d
move /y vstor2*.sys "%windir%\System32\drivers\vstor2-mntapi20-shared.sys" >nul 2>nul
sc create vstor2-mntapi20-shared type= kernel start= auto binpath= "%WinDir%\System32\drivers\vstor2-mntapi20-shared.sys" displayname= "Vstor2 MntApi 2.0 Driver (shared)"
goto nextins
:64d
move /y vstor2*.sys "%windir%\SysWOW64\drivers\vstor2-mntapi20-shared.sys" >nul 2>nul
sc create vstor2-mntapi20-shared type= kernel start= auto binpath= "%WinDir%\SysWOW64\drivers\vstor2-mntapi20-shared.sys" displayname= "Vstor2 MntApi 2.0 Driver (shared)"
:nextins
net start vstor2-mntapi20-shared >nul

echo.
echo         一键安装所有服务成功!任意键返回主菜单
echo         你也可在主菜单中选择禁用不需要的服务
pause >nul
goto menu

:s1
cls
echo                网络服务菜单
echo         ==========================
echo.
echo         1、bridge(桥接)
echo.
echo         2、nat(网络共享)
echo.
echo         3、host-only(仅为主机)
echo.
echo         4、禁用VMnetDHCP服务
echo.
echo         5、启用VMnetDHCP服务
echo.
echo         6. 禁用全部网络功能
echo.
echo         7、返回主菜单
echo.
echo         温馨提示:
echo             如果只安装第一项或安装第二、第三项时想手
echo             动设置虚拟机IP/网关/DNS才可禁用VMnetDHCP服务;
echo             请不要在未重启系统时反复启用或停用某种网络服务;
:cl1
echo.
set /p choice=         请选择:
IF NOT "%choice%"=="" SET choice=%choice:~0,1%
if /i "%choice%"=="1" goto n1
if /i "%choice%"=="2" goto n2
if /i "%choice%"=="3" goto n3
if /i "%choice%"=="4" goto n4
if /i "%choice%"=="5" goto n5
if /i "%choice%"=="6" goto n6
if /i "%choice%"=="7" goto menu
echo.
echo         选择无效,请重新输入
echo.
goto cl1

:n1
cls
echo.
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo         请选择要进行的操作,然后按回车
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo         1、禁用桥接服务
echo.
echo         2、启用桥接服务
echo.
echo         3、返回网络服务菜单
echo.
:cl11
echo.
set /p choice=         请选择:
IF NOT "%choice%"=="" SET choice=%choice:~0,1%
if /i "%choice%"=="1" goto n11
if /i "%choice%"=="2" goto n12
if /i "%choice%"=="3" goto s1
echo.
echo         选择无效,请重新输入
echo.
goto cl11

:n11
cd /d "%~dp0"
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMnetBridge >nul 2>nul||(echo.&echo 桥接服务已经禁用!任意键返回网络服务菜单&pause>nul&goto s1)
vnetlib%vmbit%.exe -- stop bridge
vnetlib%vmbit%.exe -- uninstall bridge
echo.
echo         禁用桥接服务成功!重启后生效!任意键返回网络服务菜单
echo.
pause >nul
goto s1

:n12
cd /d "%~dp0"
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMnetBridge >nul 2>nul&&(echo.&net start VMnetBridge >nul &&echo 桥接服务已经启用!任意键返回网络服务菜单&pause>nul&goto s1)
reg query HKLM\SYSTEM\CurrentControlSet\Services\vmnetuserif >nul 2>nul || (vnetlib%vmbit%.exe -- install userif)
start /wait vnetlib%vmbit%.exe -- start userif >nul 2>nul
rundll32 setupapi,InstallHinfSection _Install1.NT 128 .\netadapter.inf >nul
if "%PROCESSOR_ARCHITECTURE%" neq "x86" goto x64_bridge
ver|find "5.">nul && (
copy /y 86Drv\bridge\_vmnetbridge.cat_xp .\vmnetBridge.cat >nul
copy /y 86Drv\bridge\_vmnetBridge.dll_xp .\vmnetBridge.dll >nul
copy /y 86Drv\bridge\_vmnetBridge.sys_xp .\vmnetBridge.sys >nul
)
ver|find "6.">nul && (
copy /y 86Drv\bridge\_vmnetbridge.cat_vista .\vmnetBridge.cat >nul
copy /y 86Drv\bridge\_vmnetBridge.dll_vista .\vmnetBridge.dll >nul
copy /y 86Drv\bridge\_vmnetBridge.sys_vista .\vmnetBridge.sys >nul
)
goto bridge_install
:x64_bridge
ver|find "5.">nul && (
copy /y 64Drv\bridge\_vmnetbridge.cat_xp_64 .\vmnetBridge.cat >nul
copy /y 64Drv\bridge\_vmnetBridge.dll_xp_64 .\vmnetBridge.dll >nul
copy /y 64Drv\bridge\_vmnetBridge.sys_xp_64 .\vmnetBridge.sys >nul
)
ver|find "6.">nul && (
copy /y 64Drv\bridge\_vmnetbridge.cat_vista_64 .\vmnetBridge.cat >nul
copy /y 64Drv\bridge\_vmnetBridge.dll_vista_64 .\vmnetBridge.dll >nul
copy /y 64Drv\bridge\_vmnetBridge.sys_vista_64 .\vmnetBridge.sys >nul
)
:bridge_install
start /wait vnetlib%vmbit%.exe -- install bridge
start /wait vnetlib%vmbit%.exe -- start bridge
echo.
echo         启用桥接服务成功!任意键返回网络服务菜单
echo.
pause >nul
goto s1

:n2
cls
echo.
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo         请选择要进行的操作,然后按回车
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo         1、禁用nat服务
echo.
echo         2、启用nat服务(默认安装虚拟网卡8)
echo.
echo         3、返回网络服务菜单
echo.
:cl12
echo.
set /p choice=         请选择:
IF NOT "%choice%"=="" SET choice=%choice:~0,1%
if /i "%choice%"=="1" goto n21
if /i "%choice%"=="2" goto n22
if /i "%choice%"=="3" goto s1
echo.
echo         选择无效,请重新输入
echo.
goto cl12

:n21
cd /d "%~dp0"
reg query "HKLM\SYSTEM\CurrentControlSet\Services\VMware NAT Service" >nul 2>nul||(echo.&echo nat服务已经禁用!任意键返回网络服务菜单&pause>nul&goto s1)
vnetlib.exe -- remove adapter vmnet8
vnetlib.exe -- stop nat & vnetlib.exe -- uninstall nat
echo.
echo         禁用nat服务成功!重启后生效!任意键返回网络服务菜单
echo.
pause >nul
goto s1

:n22
cd /d "%~dp0"
reg query "HKLM\SYSTEM\CurrentControlSet\Services\VMware NAT Service" >nul 2>nul&&(echo.&net start "VMware NAT Service" >nul &&echo nat服务已经启用!任意键返回网络服务菜单&pause>nul&goto s1)
net start Dhcp >nul 2>nul
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMnetuserif >nul 2>nul || (vnetlib%vmbit%.exe -- install userif)
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMnetDHCP >nul 2>nul || (vnetlib.exe -- install dhcp)
vnetlib.exe -- install nat
vnetlib.exe -- add adapter vmnet8
vnetlib.exe -- add dhcp vmnet8
vnetlib.exe -- add nat vmnet8
vnetlib.exe -- set vnet vmnet8 addr 192.168.128.0
vnetlib.exe -- stop nat
vnetlib.exe -- stop dhcp
vnetlib.exe -- update dhcp vmnet8
vnetlib.exe -- start dhcp
vnetlib.exe -- update nat vmnet8
vnetlib.exe -- start nat
vnetlib.exe -- update adapter vmnet8
echo.
echo         启用nat服务成功!重启后生效!任意键返回网络服务菜单
echo.
pause >nul
goto s1

:n3
cls
echo.
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo         请选择要进行的操作,然后按回车
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo         1、禁用host-only服务
echo.
echo         2、启用host-only服务(默认安装虚拟网卡1)
echo.
echo         3、返回网络服务菜单
echo.
echo.
:cl13
echo.
set /p choice=         请选择:
IF NOT "%choice%"=="" SET choice=%choice:~0,1%
if /i "%choice%"=="1" goto n31
if /i "%choice%"=="2" goto n32
if /i "%choice%"=="3" goto s1
echo.
echo         选择无效,请重新输入
echo.
goto cl13

:n31
cd /d "%~dp0"
vnetlib%vmbit%.exe -- remove adapter vmnet1
echo.
echo         禁用host-only服务成功!重启后生效!任意键返回网络服务菜单
echo.
pause >nul
goto s1

:n32
cd /d "%~dp0"
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMnetuserif >nul 2>nul||(vnetlib%vmbit%.exe -- install userif)
net start Dhcp >nul 2>nul
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMnetDHCP >nul 2>nul||(vnetlib.exe -- install dhcp)
vnetlib.exe -- add adapter vmnet1
vnetlib.exe -- add dhcp vmnet1
vnetlib.exe -- set vnet vmnet1 addr 10.10.10.0
vnetlib.exe -- stop dhcp
vnetlib.exe -- update dhcp vmnet1
vnetlib.exe -- start dhcp
vnetlib.exe -- update adapter vmnet1
echo.
echo         启用host-only服务成功!任意键返回网络服务菜单
echo.
pause >nul
goto s1

:n4
cd /d "%~dp0"
reg query HKLM\SYSTEM\CurrentControlSet\Services\vmnetdhcp >nul 2>nul&&(vnetlib.exe -- stop dhcp & vnetlib.exe -- uninstall dhcp)
echo.
echo         禁用VMnetDHCP服务成功!重启后生效!任意键返回网络服务菜单
echo.
pause >nul
goto s1

:n5
cd /d "%~dp0"
reg query HKLM\SYSTEM\CurrentControlSet\Services\vmnetdhcp >nul 2>nul||(vnetlib.exe -- install dhcp & vnetlib.exe -- start dhcp)
echo.
echo         启用VMnetDHCP服务成功!任意键返回网络服务菜单
echo.
pause >nul
goto s1

:n6
cd /d "%~dp0"
vnetlib%vmbit%.exe -- uninstall adapter
echo.
echo         禁用全部网络服务成功!重启后生效!任意键返回网络服务菜单
echo.
pause >nul
goto s1

:s2
cls
echo.
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo         请选择要进行的操作,然后按回车
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo         1、禁用USB服务
echo.
echo         2、启动USB服务
echo.
echo         3、返回主菜单
echo.
echo         4、退出
:cl2
echo.
set /p choice=         请选择:
IF NOT "%choice%"=="" SET choice=%choice:~0,1%
if /i "%choice%"=="1" goto s21
if /i "%choice%"=="2" goto s22
if /i "%choice%"=="3" goto menu
if /i "%choice%"=="4" exit
echo.
echo         选择无效,请重新输入
echo.
goto cl2
:s21
cd /d "%~dp0"
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMUSBArbService >nul 2>nul||(echo.&echo USB服务已经禁用!任意键返回主菜单&pause>nul&goto menu)
net stop VMUSBArbService
sc delete VMUSBArbService >nul 2>nul
vnetlib%vmbit%.exe -- stop usb
vnetlib%vmbit%.exe -- uninstall usb
vnetlib%vmbit%.exe -- stop hcmon
vnetlib%vmbit%.exe -- uninstall hcmon
rmdir /s /q "%CommonProgramFiles%\VMware\USB" >nul 2>nul
IF "%PROCESSOR_ARCHITECTURE%" neq "x86" rmdir /s /q "%CommonProgramFiles(x86)%\VMware" >nul 2>nul
echo.
echo         禁用USB服务成功!重启后生效!任意键返回主菜单
echo.
pause >nul
goto menu

:s22
cd /d "%~dp0"
pushd %~dp0
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMUSBArbService >nul 2>nul&&(echo.&net start VMUSBArbService >nul&&echo USB服务已经启动!任意键返回主菜单&pause>nul&goto menu)
IF "%PROCESSOR_ARCHITECTURE%" neq "x86" set CommonPath=%CommonProgramFiles(x86)%\VMware\USB
IF "%PROCESSOR_ARCHITECTURE%" equ "x86" set CommonPath=%CommonProgramFiles%\VMware\USB
mkdir "%CommonPath%"
xcopy .\USB\* "%CommonPath%\" /E /Y >nul
cd /d "%CommonPath%"
IF "%PROCESSOR_ARCHITECTURE%" equ "x86" (xcopy x86\* /E /Y >nul & reg add "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\VMware USB" /v InstallPath /t REG_SZ /d "%CommonPath%" /f && goto s220)
IF "%PROCESSOR_ARCHITECTURE%" neq "x86" (
xcopy x64\* /E /Y >nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\VMware, Inc.\VMware USB" /v InstallPath /t REG_SZ /d "%CommonPath%" /f >nul
move /y vmusb.inf_64 vmusb.inf >nul
)
ver|find "6.2">nul || ver|find "6.3">nul && (
move /y vmusb.inf_62 vmusb.inf >nul
move /y vmusb.cat_62 vmusb.cat >nul
move /y vmusb.sys_62 vmusb.sys >nul
)
:s220
vnetlib%vmbit%.exe -- install hcmon
if not exist %WinDir%\system32\drivers\hcmon.sys copy /y "%CommonPath%\hcmon.sys" "%WinDir%\system32\drivers\"
vnetlib%vmbit%.exe -- start hcmon
ver|find "6.">nul && goto s222
ver|find "5.">nul && goto s221
:s221
rundll32 setupapi,InstallHinfSection _Install1.NT 128 %CommonPath%\vmusb.inf
goto s223
:s222
pnputil.exe -i -a "%CommonPath%\vmusb.inf" >nul 2>nul
:s223
sc create VMUSBArbService binpath= "\"%CommonPath%\vmware-usbarbitrator%vmbit%.exe\"" start= auto depend= winmgmt displayname= "VMware USB Arbitration Service" >nul
popd
net start VMUSBArbService
echo.
echo         启动USB服务成功!任意键返回主菜单
echo.
pause >nul
goto menu

:s3
cls
echo.
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo         请选择要进行的操作,然后按回车
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo         1、禁用“磁盘映射功能”
echo.
echo         2、启用“磁盘映射功能”
echo.
echo         3、返回主菜单
echo.
echo         4、退出
:cl3
echo.
set /p choice=         请选择:
IF NOT "%choice%"=="" SET choice=%choice:~0,1%
if /i "%choice%"=="1" goto s31
if /i "%choice%"=="2" goto s32
if /i "%choice%"=="3" goto menu
if /i "%choice%"=="4" exit
echo.
echo         选择无效,请重新输入
echo.
goto cl3

:s31
cd /d "%~dp0"
reg query "HKLM\SYSTEM\CurrentControlSet\Services\vstor2-mntapi20-shared" >nul 2>nul||(echo.&echo 磁盘映射功能已经禁用!任意键返回主菜单&pause>nul&goto menu)
net stop vstor2-mntapi20-shared >nul
sc delete vstor2-mntapi20-shared >nul
echo.
echo         禁用磁盘映射功能成功!任意键返回本级菜单
echo.
pause >nul
goto s3

:s32
cd /d "%~dp0"
reg query "HKLM\SYSTEM\CurrentControlSet\Services\vstor2-mntapi20-shared" >nul 2>nul&&(echo.&net start "vstor2-mntapi20-shared" >nul &&echo 磁盘映射功能已经启用!任意键返回主菜单&pause>nul&goto menu)
if "%PROCESSOR_ARCHITECTURE%" neq "x86" goto s322
:s321
copy /y 86Drv\vstor2*.sys .\
move /y .\vstor2*.sys "%WinDir%\system32\drivers\vstor2-mntapi20-shared.sys" >nul
sc create vstor2-mntapi20-shared type= kernel start= auto binpath= "%WinDir%\System32\drivers\vstor2-mntapi20-shared.sys" displayname= "Vstor2 MntApi 2.0 Driver (shared)"
net start vstor2-mntapi20-shared >nul
goto :s323
:s322
copy /y 64Drv\vstor2*.sys .\
if not exist "%WinDir%\SysWOW64\drivers\vstor2-mntapi20-shared.sys" move /y .\vstor2*.sys "%WinDir%\SysWOW64\drivers\vstor2-mntapi20-shared.sys"
sc create vstor2-mntapi20-shared type= kernel start= auto binpath= "%WinDir%\SysWOW64\drivers\vstor2-mntapi20-shared.sys" displayname= "Vstor2 MntApi 2.0 Driver (shared)"
net start vstor2-mntapi20-shared >nul
:s323
echo.
echo         启用磁盘映射功能成功!任意键返回本级菜单
echo.
pause >nul
goto s3

:s4
cls
echo.
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo         请选择要进行的操作,然后按回车
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo         1、禁用授权服务
echo.
echo         2、启用授权服务
echo.
echo         3、返回主菜单
echo.
echo         4、退出
:cl4
echo.
set /p choice=         请选择:
IF NOT "%choice%"=="" SET choice=%choice:~0,1%
if /i "%choice%"=="1" goto s41
if /i "%choice%"=="2" goto s42
if /i "%choice%"=="3" goto menu
if /i "%choice%"=="4" exit
echo.
echo         选择无效,请重新输入
echo.
goto cl4

:s41
cd /d "%~dp0"
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMAuthdService >nul 2>nul||(echo.&echo 授权服务已经禁用!任意键返回主菜单&pause>nul&goto menu)
start /wait vnetlib.exe -- stop authd
start /wait vnetlib.exe -- unstalll authd
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMAuthdService >nul 2>nul&&(net stop VMAuthdService >nul 2>nul&&sc delete VMAuthdService >nul 2>nul)
echo.
echo         禁用授权服务成功!重启后生效!任意键返回主菜单
echo.
pause >nul
goto menu

:s42
cd /d "%~dp0"
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMAuthdService >nul 2>nul&&(echo.&net start VMAuthdService >nul &&echo 授权服务已经启用!任意键返回主菜单&pause>nul&goto menu)
start /wait vnetlib.exe -- install authd
start /wait vnetlib.exe -- start authd
net start VMAuthdService >nul 2>nul
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMAuthdService >nul 2>nul||(sc create VMAuthdService  start= auto binpath= "%cd%\vmware-authd.exe"  depend= "vmx86/winmgmt" displayname= "VMware Authorization Service"&&net start VMAuthdService >nul 2>nul)
echo.
echo         启用授权服务成功!任意键返回主菜单
echo.
pause >nul
goto menu

:s5
cls
echo.
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo         请选择要进行的操作,然后按回车
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo         1、禁用虚拟打印机服务
echo.
echo         2、启用虚拟打印机服务
echo.
echo         3、返回主菜单
echo.
echo         4、退出
:cl5
echo.
set /p choice=         请选择:
IF NOT "%choice%"=="" SET choice=%choice:~0,1%
if /i "%choice%"=="1" goto s51
if /i "%choice%"=="2" goto s52
if /i "%choice%"=="3" goto menu
if /i "%choice%"=="4" exit
echo.
echo         选择无效,请重新输入
echo.
goto cl5
:s51
cd /d "%~dp0"
echo.
echo         正在禁用虚拟打印机服务...
echo.
start /wait vnetlib%vmbit%.exe -- stop parport
start /wait vnetlib%vmbit%.exe -- uninstall parport
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\ThinPrint" /f >nul 2>nul
echo.
echo         禁用虚拟打印机服务成功!任意键返回本级菜单
echo.
pause >nul
goto s5
:s52
cd /d "%~dp0"
echo.
echo         正在安装虚拟打印机服务...
echo.
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMparport >nul 2>nul && (echo.&net start VMparport >nul &&echo 打印机串口驱动已经启用!&pause>nul&goto MENU)
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\ThinPrint"
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\ThinPrint" /v Lang /t REG_SZ /d "enu" /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\ThinPrint\Client"
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\ThinPrint\Client" /v DefPrintState /t REG_DWORD /d "0x00000001" /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\ThinPrint\Client" /v DefaultState /t REG_DWORD /d "0x00000001" /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\ThinPrint\Client" /v PropertyRequestTimeout /t REG_DWORD /d "0x00000078" /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\ThinPrint\Client" /v WatchPrinters /t REG_DWORD /d "0x00000001" /f
start /wait vnetlib%vmbit%.exe -- install parport
start /wait vnetlib%vmbit%.exe -- start parport
echo.
echo         打印机支持安装成功!任意键返回本级菜单
echo.
pause >nul
goto s5

:s6
cls
echo.
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo         请选择要进行的操作,然后按回车
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo.   提示:安装此服务可以通过客户端远程连接到服务器端
echo.        进行远程创建和管理服务器上的虚拟机等操作,以及
echo.        查看远程服务器的CPU、内存、硬盘资源的状态等.
echo.
echo.
echo         1、禁用共享虚拟机和远程访问服务(Hostd服务)
echo.
echo         2、启用共享虚拟机和远程访问服务(Hostd服务)
echo.
echo         3、返回主菜单
echo.
echo         4、退出
:cl6
echo.
set /p choice=         请选择:
IF NOT "%choice%"=="" SET choice=%choice:~0,1%
if /i "%choice%"=="1" goto s61
if /i "%choice%"=="2" goto s62
if /i "%choice%"=="3" goto menu
if /i "%choice%"=="4" exit
echo.
echo         选择无效,请重新输入
echo.
goto cl6
:s61
cd /d "%~dp0"
cls
echo         正在禁用共享虚拟机和远程访问服务(Hostd服务)
echo.
net stop VMwareHostd
sc delete VMwareHostd >nul 2>nul
rd /s /q "%AllUsersProfile%\Application Data\VMware\hostd" >nul 2>nul
rd /s /q "%AllUsersProfile%\Application Data\VMware\SSL" >nul 2>nul
ver|find "6.">nul && (set profilepath=%AllUsersProfile%)
ver|find "5.">nul && (set profilepath=%AllUsersProfile%\Application Data)
start /wait str.exe "%profilepath%\VMware\hostd\config.xml" 0 0 /R /asc:"%cd%" /asc:"VMwareDir" /A >nul 2>nul
start /wait str.exe "%profilepath%\VMware\hostd\datastores.xml" 0 0 /R /asc:"%cd%" /asc:"VMwareDir" /A >nul 2>nul
start /wait str.exe "%profilepath%\VMware\hostd\stats\hostAgentStats.xml" 0 0 /R /asc:"%profilepath%\VMware" /asc:"hostdDir" /A >nul 2>nul
start /wait str.exe "%profilepath%\VMware\hostd\config.xml" 0 0 /R /asc:"%profilepath%\VMware" /asc:"hostdDir" /A >nul 2>nul
net start VMnetDHCP >nul 2>nul
net start "VMware NAT Service" >nul 2>nul
echo.
cls
echo         禁用共享虚拟机和远程访问服务(Hostd服务)成功!任意键返回主菜单
echo.
pause >nul
goto menu

:s62
cd /d "%~dp0"
cls
echo.
echo         正在启用共享虚拟机和远程访问服务(Hostd服务)
echo.

reg query HKLM\SYSTEM\CurrentControlSet\Services\VMUSBArbService >nul 2>nul || (echo.&echo 请先安装USB服务!任意键返回主菜单&pause>nul&goto menu)
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMwareHostd >nul 2>nul && (echo.&net start VMwareHostd >nul &&echo WEB访问服务已经启用!&pause>nul&goto MENU)
net start LanmanWorkstation >nul 2>nul
net start VMAuthdService >nul 2>nul
net start VMUSBArbService >nul 2>nul
ver|find "6.">nul && (set profilepath=%AllUsersProfile%)
ver|find "5.">nul && (set profilepath=%AllUsersProfile%\Application Data)
md "%profilepath%\VMware\hostd" >nul 2>nul
md "%profilepath%\VMware\SSL" >nul 2>nul
xcopy Web\* "%profilepath%\VMware\hostd" /E /Y >nul 2>nul
copy /y SSL\hostd.ssl.config "%profilepath%\VMware\SSL\" >nul 2>nul
if not exist "%profilepath%\VMware\SSL\rui.key" openssl.exe req -x509 -days 365 -newkey rsa:2048 -keyout "%profilepath%\VMware\SSL\rui.key" -out "%profilepath%\VMware\SSL\rui.crt" -config "%profilepath%\VMware\SSL\hostd.ssl.config"
del /f /q *tmp* >nul 2>nul
start /wait str.exe "%profilepath%\VMware\hostd\config.xml" 0 0 /R /asc:"VMwareDir" /asc:"%cd%" /A >nul 2>nul
start /wait str.exe "%profilepath%\VMware\hostd\datastores.xml" 0 0 /R /asc:"VMwareDir" /asc:"%cd%" /A >nul 2>nul
start /wait str.exe "%profilepath%\VMware\hostd\stats\hostAgentStats.xml" 0 0 /R /asc:"hostdDir" /asc:"%profilepath%\VMware" /A >nul 2>nul
start /wait str.exe "%profilepath%\VMware\hostd\config.xml" 0 0 /R /asc:"hostdDir" /asc:"%profilepath%\VMware" /A >nul 2>nul

sc create VMwareHostd binpath= "%cd%\vmware-hostd.exe -u \"%profilepath%\VMware\hostd\config.xml\"" start= auto depend= VMAuthdService/VMUSBArbService/lanmanworkstation  displayname= "VMware Workstation Server"

reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\VMwareHostd" /v FailureCommand /t REG_SZ /d "\"%cd%\vm-support.vbs\"" /f

net start VMwareHostd
if %errorlevel% neq 0 echo 服务启动失败,请检查关联服务是否成功启动,任意键返回菜单&pause >nul&goto s6
echo.
echo         共享虚拟机和远程访问服务(Hostd服务)安装成功!任意键返回主菜单
echo.
pause >nul
goto menu

:s7
cls
echo.
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo         请选择要进行的操作,然后按回车
echo         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
echo.
echo.   提示:安装此服务可以在虚拟机里使用CTRL+ALT+DEL组合键
echo.
echo.
echo         1、启用增强虚拟键盘服务
echo.
echo         2、禁用增强虚拟键盘服务
echo.
echo         3、返回主菜单
echo.
echo         4、退出
:cl7
echo.
set /p choice=         请选择:
IF NOT "%choice%"=="" SET choice=%choice:~0,1%
if /i "%choice%"=="1" goto s71
if /i "%choice%"=="2" goto s72
if /i "%choice%"=="3" goto menu
if /i "%choice%"=="4" exit
echo.
echo         选择无效,请重新输入
echo.
goto s7
:s71
cd /d "%~dp0"

cls

echo         正在启用增强虚拟键盘服务
echo.
IF "%PROCESSOR_ARCHITECTURE%" equ "x86" copy /y 86Drv\VMkbd.sys %WinDir%\system32\drivers\ >nul 2>nul
IF "%PROCESSOR_ARCHITECTURE%" neq "x86" copy /y 64Drv\VMkbd.sys %WinDir%\system32\drivers\ >nul 2>nul
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\Installer\VMware Workstation\Features" /v vmkbd /t REG_SZ /d "%SystemDrive%\\BadPath" /f >nul 2>nul
sc create vmkbd binpath= "%windir%\system32\drivers\VMkbd.sys" Type= kernel  start= demand Group= "Keyboard Port" error= normal displayname= "VMware kbd"
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\NeedReboot" /v Components /t REG_SZ /d "vmkbd" /f >nul 2>nul

for /f "tokens=*" %%a in ('reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96B-E325-11CE-BFC1-08002BE10318}" /v "UpperFilters"') do (set var=%%a)
set var=%var:UpperFilters=%
set var=%var:reg_multi_sz=%
for /f %%v in ('ver^|find /c " 5.1"') do (set wver=%%v)
if %wver%==1 (set var=%var:        =%) else (set var=%var:  =%)
if %wver%==1 (set var=%var:~,-4%)
for /f %%v in ('ver^|find /c "vmkbd"') do (set wver=%%v)
set EXISTS_FLAG=false
echo %var%|find "vmkbd">nul&&set EXISTS_FLAG=true
if %EXISTS_FLAG%==false (reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96B-E325-11CE-BFC1-08002BE10318}" /v UpperFilters /t REG_MULTI_SZ /d "%var%\0vmkbd" /f >nul 2>nul) else (echo 已经安装)
echo.
echo         增强虚拟键盘驱动安装成功,重启电脑后有效!任意键返回主菜单
echo.
pause >nul
goto menu

:s72
cd /d "%~dp0"
echo.
echo         正在禁用增强虚拟键盘服务
sc stop vmkbd >nul 2>nul
sc delete vmkbd >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\Installer\VMware Workstation\Features" /f /v vmkbd >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\NeedReboot" >nul 2>nul
reg delete "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96B-E325-11CE-BFC1-08002BE10318}" /v UpperFilters /va /f >nul 2>nul
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E96B-E325-11CE-BFC1-08002BE10318}" /v UpperFilters /t REG_MULTI_SZ /d "kbdclass\0" /f >nul 2>nul
echo.
echo         增强虚拟键盘驱动卸载成功,重启电脑后有效!任意键返回主菜单
echo.
pause >nul
goto menu

:chkinfo
cd /d "%~dp0"
echo.
echo         注意:此功能用于收集系统环境和VMware安装信息
echo                  安装VMware逆向版echo.
echo.
echo 开始检测,请稍后...
echo.
echo.
echo 检测注册表 >> install.log
IF "%PROCESSOR_ARCHITECTURE%" neq "x86" echo 64位系统 >> install.log
IF "%PROCESSOR_ARCHITECTneq%" equ "x86"echo 32位系统 >> install.log

reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName >> install.log
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v CSDVersion >> install.log
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v BuildLab >> install.log
reg query "HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0" /v ProcessorNameString >> install.log
reg query "HKLM\SOFTWARE\VMware, Inc." >> install.log 2>> install.log || reg query "HKLM\SOFTWARE\Wow6432Node\VMware, Inc." >> install.log
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\vmware.exe" >>install.log
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\VMware Workstation" /v InstallPath >>install.log
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\VMware, Inc.\VMware Workstation" /v InstallPath >>install.log
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\VMware, Inc.\VMware Workstation" /v InstallPath64 >>install.log
reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VMware\Performance" /v Library >> install.log
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMnetBridge >> install.log
reg query HKLM\SYSTEM\CurrentControlSet\Services\vmnetuserif >> install.log
reg query "HKLM\SYSTEM\CurrentControlSet\Services\VMware NAT Service" >> install.log
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMnetDHCP >> install.log
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMUSBArbService >> install.log
reg query "HKLM\SYSTEM\CurrentControlSet\Services\vstor2-mntapi20-shared" >> install.log
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMAuthdService >> install.log
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMparport >> install.log
reg query HKLM\SYSTEM\CurrentControlSet\Services\VMwareHostd >> install.log
reg query HKLM\SYSTEM\CurrentControlSet\Services\vmkbd >> install.log
reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Drivers32" /v "VIDC.VMnc" >> install.log

reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{1F1C2DFC-2D24-3E06-BCB8-725134ADF989} >> install.log
reg query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{86CE1746-9EFF-3C9C-8755-81EA8903AC34} >> install.log
reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{4B6C7001-C7D6-3710-913E-5BC23FCE91E6} >> install.log

echo.
echo.
ver|find "6.">nul && (set profilepath=%AllUsersProfile%)
ver|find "5.">nul && (set profilepath=%AllUsersProfile%\Application Data)
echo 检测文件和文件夹 >> install.log
if not exist "%profilepath%\VMware" echo "%profilepath%\VMware"不存在 >> install.log
if not exist "%profilepath%\VMware\VMware Workstation" echo "%profilepath%\VMware\VMware Workstation"不存在 >> install.log
if not exist "%cd%\86Drv" echo "%cd%\86Drv"不存在 >> install.log
if not exist "%cd%\64Drv" echo "%cd%\64Drv"不存在 >> install.log

if not exist "%WinDir%\System32\vnetinst.dll" echo "%WinDir%\System32\vnetinst.dll"不存在 >> install.log
if not exist "%profilepath%\VMware\VMware Workstation\config.ini" echo "%profilepath%\VMware\VMware Workstation\config.ini"不存在 >> install.log
if not exist "%AppData%\VMware\preferences.ini" echo "%AppData%\VMware\preferences.ini"不存在 >> install.log
if not exist "%WinDir%\SysWOW64\vsocklib.dll" echo "%WinDir%\SysWOW64\vsocklib.dll"不存在 >> install.log
if not exist "%WinDir%\system32\vsocklib.dll" echo "%WinDir%\system32\vsocklib.dll"不存在 >> install.log
if not exist "%WinDir%\System32\vnetlib%vmbit%.dll" echo "%WinDir%\System32\vnetlib%vmbit%.dll"不存在 >> install.log
if not exist "%AppData%\VMware\preferences.ini" echo "%AppData%\VMware\preferences.ini"不存在 >> install.log
if not exist "%CommonProgramFiles%\VMware\USB\vmware-USBArbitrator.exe" echo "%CommonProgramFiles%\VMware\USB\vmware-USBArbitrator.exe"不存在 >> install.log
if not exist "%CommonProgramFiles(x86)%\VMware\USB\vmware-USBArbitrator64.exe" echo "%CommonProgramFiles(x86)%\VMware\USB\vmware-USBArbitrator64.exe"不存在 >> install.log

if not exist "%WinDir%\system32\drivers\vmx86.sys" echo "%WinDir%\system32\drivers\vmx86.sys"不存在 >> install.log
if not exist "%WinDir%\system32\drivers\vmci.sys" echo "%WinDir%\system32\drivers\vmci.sys"不存在 >> install.log
if not exist "%WinDir%\system32\drivers\vsock.sys" echo "%WinDir%\system32\drivers\vsock.sys"不存在 >> install.log
if not exist "%WinDir%\system32\drivers\vmnetadapter.sys" echo "%WinDir%\system32\drivers\vmnetadapter.sys"不存在 >> install.log
if not exist "%WinDir%\system32\drivers\vmnetbridge.sys" echo "%WinDir%\system32\drivers\vmnetbridge.sys"不存在 >> install.log
if not exist "%WinDir%\system32\drivers\vmnetuserif.sys" echo "%WinDir%\system32\drivers\vmnetuserif.sys"不存在 >> install.log
if not exist "%WinDir%\system32\drivers\vstor2-mntapi20-shared.sys" echo "%WinDir%\system32\drivers\vstor2-mntapi20-shared.sys"不存在 >> install.log
if not exist "%WinDir%\system32\drivers\hcmon.sys" echo "%WinDir%\system32\drivers\hcmon.sys"不存在 >> install.log
if not exist "%WinDir%\SysWOW64\drivers\vstor2-mntapi20-shared.sys" echo "%WinDir%\SysWOW64\drivers\vstor2-mntapi20-shared.sys"不存在 >> install.log
if not exist "%WinDir%\system32\vmnetdhcp.exe" echo "%WinDir%\system32\vmnetdhcp.exe"不存在 >> install.log
if not exist "%WinDir%\system32\vmnat.exe" echo "%WinDir%\system32\vmnat.exe"不存在 >> install.log

echo.
echo. >> install.log
echo 检测服务运行状态 >> install.log
echo 检测vmx86服务 >> install.log
net start vmx86 2>> install.log
echo 检测vmci服务 >> install.log
net start vmci 2>> install.log
echo 检测vsock服务 >> install.log
net start vsock 2>> install.log
echo 检测VMnetAdapter服务 >> install.log
net start VMnetAdapter 2>> install.log
echo 检测VMnetBridge服务 >> install.log
net start VMnetBridge 2>> install.log
echo 检测VMnetuserif服务 >> install.log
net start VMnetuserif 2>> install.log
echo 检测VMAuthdService服务 >> install.log
net start VMAuthdService 2>> install.log
echo 检测VMnetDHCP服务 >> install.log
net start VMnetDHCP 2>> install.log
echo 检测"VMware NAT Service"服务 >> install.log
net start "VMware NAT Service" 2>> install.log
echo 检测hcmon服务 >> install.log
net start hcmon 2>> install.log
echo 检测VMUSBArbService服务 >> install.log
net start VMUSBArbService 2>> install.log
echo 检测VMwareHostd服务 >> install.log
net start VMwareHostd 2>> install.log
echo 检测"vstor2-mntapi20-shared"服务 >> install.log
net start "vstor2-mntapi20-shared" 2>> install.log

net user %USERNAME% | find "本地组成员" >> install.log
net localgroup __vmware__ >> install.log
echo 检测完毕,请查看生成的install.log日志文件.
pause >nul
echo.
cls
echo.
goto menu

:EX
exit


最后看看效果怎样视频,不相信的人看视频吧,看看是不是真的
文件太大了,早上起来的时候上传失败,不上传了





评分

参与人数 16HB +26 THX +11 收起 理由
消逝的过去 + 1
虚心学习 + 1 [吾爱汇编论坛52HB.COM]-吃水不忘打井人,给个评分懂感恩!
仙仙猫 + 1
zxjzzh + 1 [吾爱汇编论坛52HB.COM]-学破解防破解,知进攻懂防守!
lies + 1
别管我了行 + 2 [吾爱汇编论坛52HB.COM]-吃水不忘打井人,给个评分懂感恩!
Aniz + 4 + 1 祝学破解论坛全体成员2016年开心每一天!
小者 + 2 热心人终将成为大牛!
Shark恒 + 3 + 1 评分=感恩!简单却充满爱!感谢您的作品!
langzi + 1 + 1 评分=感恩!简单却充满爱!感谢您的作品!
CC2C3 + 2 + 1 评分=感恩!简单却充满爱!感谢您的作品!
Owner_Cracker + 1 + 1 论坛有你更精彩!感谢楼主!
gueijiaochen + 2 + 1 论坛有你更精彩!感谢楼主!
andyhack + 1 + 1 评分=感恩!简单却充满爱!感谢您的作品!
520Kelly + 4 评分=感恩!简单却充满爱!感谢您的作品!
Scar-疤痕 + 2 + 1 评分=感恩!简单却充满爱!感谢您的作品!

查看全部评分

吾爱汇编论坛-学破解,防破解!知进攻,懂防守!逆向分析,软件安全!52HB.COM
Scar-疤痕 发表于 2014-12-4 07:25 | 显示全部楼层
吾爱汇编论坛-学破解,防破解!知进攻,懂防守!逆向分析,软件安全!52HB.COM
andyhack 发表于 2014-12-4 08:05 | 显示全部楼层

不知道这个版本怎么样,10开机的时候卡的
吾爱汇编论坛-学破解,防破解!知进攻,懂防守!逆向分析,软件安全!52HB.COM
gueijiaochen 发表于 2014-12-4 10:42 | 显示全部楼层
吾爱汇编论坛-学破解,防破解!知进攻,懂防守!逆向分析,软件安全!52HB.COM
CC2C3 发表于 2014-12-4 11:32 | 显示全部楼层

谢谢分享呀。。。。

吾爱汇编论坛-学破解,防破解!知进攻,懂防守!逆向分析,软件安全!52HB.COM
520Kelly 发表于 2014-12-4 16:37 | 显示全部楼层
吾爱汇编论坛-学破解,防破解!知进攻,懂防守!逆向分析,软件安全!52HB.COM
youxigx 发表于 2014-12-4 17:21 | 显示全部楼层

虽然知道是好帖子,可看不懂~而且有点乱...完全不知道怎么弄了
吾爱汇编论坛-学破解,防破解!知进攻,懂防守!逆向分析,软件安全!52HB.COM
1003770559 发表于 2014-12-4 23:19 | 显示全部楼层

   没有好一点的镜像吗?运行老是缺少dll,烦了。
吾爱汇编论坛-学破解,防破解!知进攻,懂防守!逆向分析,软件安全!52HB.COM
 楼主| wwe杨云VGe 发表于 2014-12-5 10:29 | 显示全部楼层

1003770559 发表于 2014-12-4 23:19
没有好一点的镜像吗?运行老是缺少dll,烦了。

下载原版的镜像啊
吾爱汇编论坛-学破解,防破解!知进攻,懂防守!逆向分析,软件安全!52HB.COM
1003770559 发表于 2014-12-5 16:17 | 显示全部楼层


哪里可以下载,你知道吗?       Shark恒大大的虚拟机加密视频打不开。
吾爱汇编论坛-学破解,防破解!知进攻,懂防守!逆向分析,软件安全!52HB.COM
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

警告:本站严惩灌水回复,尊重自己从尊重他人开始!

1层
2层
3层
4层
5层
6层
7层
8层
9层
10层

免责声明

吾爱汇编(www.52hb.com)所讨论的技术及相关工具仅限用于研究学习,皆在提高软件产品的安全性,严禁用于不良动机。任何个人、团体、组织不得将其用于非法目的,否则,一切后果自行承担。吾爱汇编不承担任何因为技术滥用所产生的连带责任。吾爱汇编内容源于网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除。如有侵权请邮件或微信与我们联系处理。

站长邮箱:SharkHeng@sina.com
站长QQ:1140549900


QQ|RSS|手机版|小黑屋|帮助|吾爱汇编 ( 京公网安备11011502005403号 , 京ICP备20003498号-6 )|网站地图

Powered by Discuz!

吾爱汇编 www.52hb.com

快速回复 返回顶部 返回列表