Windows – VMware workstation install problem

installationvmware-workstationwindows 7

I've been trying to install VMware workstation 7.1.4 on my windows 7 computer.
I know I've already posted something similar to this, but this totally different situation.
Whenever I open the installer, this grey window labeled VMware workstation setup opens and nothing happens. Works on vista, but I don't use my Vista for this kinda stuff anymore. Help

enter image description here

Best Answer

This seems to be a quite common problem with many solutions.

From When installing VMware Workstation, the Setup window displays a blank screen.
To resolve this issue, you must replace certain files with the original version. To replace the files:

Open a command prompt and run these commands to re-register the necessary files :

32-bit version of Windows:

regsvr32 jscript.dll
regsvr32 vbscript.dll

64-bit version of Windows:

cd C:\windows\syswow64
regsvr32 C:\windows\system32\jscript.dll
regsvr32 C:\windows\system32\vbscript.dll

Restart Windows.

Other solutions may be to :

  • run the installation from an empty folder (only the installation package should be there)
  • make sure your AV does not block (better disable all antivirus and firewall)
  • make sure there are no processes running like webcam.exe or fixcamera.exe
  • run the installation package from the command line by adding /z action=install
  • run the installation using "Run as administrator"
  • go to registry key HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\Zones\ and delete a key L (make a backup first)

Or you can try this one:

  • To uninstall any old version, go to C:\Windows\Installer
  • Add the "Authors" column and sort by it
  • One of the .msi files with have a "VMware" author
  • Double-click it and follow through with the uninstall steps
  • To install the new version, run cmd.exe as administrator and do:

cd install-file-directory
install-file.exe /e tempfolder
cd tempfolder
run the .msi file (vmware workstation.msi)

Related Question