/build/static/layout/Breadcrumb_cap_w.png

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login
Views: 5.8k  |  Created: 01/30/2007

Average Rating: 0
Workstation has 10 inventory records, 8 Questions, 2 Blogs and 13 links. Please help add to this by sharing more!

Deployment Tips (5)

Most Common Setup Type
Not Determined
Average Package Difficulty Rating
Rated 0 / 5 (Not Rated) based on 0 ratings
Most Commonly Reported Deployment Method
Not Determined
119
Note
From here at the VMWare website:

Installing VMware Workstation Silently
If you are installing VMware Workstation on a number of Windows host computers —in a corporate environment, for example — you may want to use the silent installation features of the Microsoft Windows Installer.

Before installing VMware Workstation silently, you must ensure that the host computer has version 2.0 or higher of the MSI runtime engine. This version of the installer is available in versions of Windows beginning with Windows XP and is available separately from Microsoft.

The following steps outline the procedures for a silent install. For additional details on using the Microsoft Windows Installer, see the Microsoft Web site.

1. Silently extract the administrative installation image from the VMware Workstation installer:

setup.exe /a /s /v"/qn TARGETDIR=<InstallTempPath>"

setup.exe is the name of the installer on the CD distribution. If you are using a downloaded installer, the filename is similar to VMwareWorkstation-<xxxx>.exe, where <xxxx> is a series of numbers representing the version and build numbers.

<InstallTempPath> is the full path to the folder where you want to store the administrative installation image.

2. Run a silent installation using msiexec and the administrative installation image you extracted in the previous step:

msiexec -i "<InstallTempPath>\VMware Workstation.msi" [INSTALLDIR="<PathToProgramDirectory>"] ADDLOCAL=ALL [REMOVE=<featurename,featurename>] /qn

Enter the command on one line. If you want to install VMware Workstation in a location other than the default, change the path that follows INSTALLDIR= to specify the desired location.

You may use the optional REMOVE= property to skip installation of certain features. The REMOVE= property can take one or more of the following values:

Value
Description

Authd
The VMware authorization service

Network
Networking components including the virtual bridge and the host adapters for host only networking and NAT networking; do not remove if you want to use NAT or DHCP

DHCP
The virtual DHCP server

NAT
The virtual NAT device



If you specify more than one value, use a comma to separate the values. For example, REMOVE=Authd,NAT.

Note: If you specify REMOVE=Network, the installer skips installation of certain networking components, including NAT and DHCP. There is no need to specify DHCP or NAT separately.

You may customize the installation further by adding any of the following installation properties to the command using the format PROPERTY="value". A value of 1 means true; a value of 0 means false. If you use the serial number property, enter the serial number, complete with hyphens (xxxxx-xxxxx-xxxxx-xxxxx).

Property
Effect of the Property
Default

DESKTOP_SHORTCUT
Installs a shortcut on the desktop
1

DISABLE_AUTORUN
Disables CD autorun on the host
1

REMOVE_LICENSE
(Uninstall only) Removes all stored licenses at uninstall
0

SERIALNUMBER
Automatically enters the serial number
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
119
Note
From here at the VMWare website:

Installing VMware Workstation Silently
If you are installing VMware Workstation on a number of Windows host computers —in a corporate environment, for example — you may want to use the silent installation features of the Microsoft Windows Installer.

Before installing VMware Workstation silently, you must ensure that the host computer has version 2.0 or higher of the MSI runtime engine. This version of the installer is available in versions of Windows beginning with Windows XP and is available separately from Microsoft.

The following steps outline the procedures for a silent install. For additional details on using the Microsoft Windows Installer, see the Microsoft Web site.

1. Silently extract the administrative installation image from the VMware Workstation installer:

setup.exe /a /s /v"/qn TARGETDIR=<InstallTempPath>"

setup.exe is the name of the installer on the CD distribution. If you are using a downloaded installer, the filename is similar to VMwareWorkstation-<xxxx>.exe, where <xxxx> is a series of numbers representing the version and build numbers.

<InstallTempPath> is the full path to the folder where you want to store the administrative installation image.

2. Run a silent installation using msiexec and the administrative installation image you extracted in the previous step:

msiexec -i "<InstallTempPath>\VMware Workstation.msi" [INSTALLDIR="<PathToProgramDirectory>"] ADDLOCAL=ALL [REMOVE=<featurename,featurename>] /qn

Enter the command on one line. If you want to install VMware Workstation in a location other than the default, change the path that follows INSTALLDIR= to specify the desired location.

You may use the optional REMOVE= property to skip installation of certain features. The REMOVE= property can take one or more of the following values:

Value
Description

Authd
The VMware authorization service

Network
Networking components including the virtual bridge and the host adapters for host only networking and NAT networking; do not remove if you want to use NAT or DHCP

DHCP
The virtual DHCP server

NAT
The virtual NAT device



If you specify more than one value, use a comma to separate the values. For example, REMOVE=Authd,NAT.

Note: If you specify REMOVE=Network, the installer skips installation of certain networking components, including NAT and DHCP. There is no need to specify DHCP or NAT separately.

You may customize the installation further by adding any of the following installation properties to the command using the format PROPERTY="value". A value of 1 means true; a value of 0 means false. If you use the serial number property, enter the serial number, complete with hyphens (xxxxx-xxxxx-xxxxx-xxxxx).

Property
Effect of the Property
Default

DESKTOP_SHORTCUT
Installs a shortcut on the desktop
1

DISABLE_AUTORUN
Disables CD autorun on the host
1

REMOVE_LICENSE
(Uninstall only) Removes all stored licenses at uninstall
0

SERIALNUMBER
Automatically enters the serial number
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
118
Note
Type: Windows Installer (MSI) file wrapped in a setup.exe file.

How to extract contents: At a command prompt, type
"VMware-workstation-5.0.0-13124.exe /a" (without the quotes), and type in a temporary location. This will extract the "VMware Workstation.msi" file and other required files.

To install silently: the same way you install any other MSI file, with any of the msiexec.exe command switches you want. At a command prompt, type

msiexec.exe /i "VMWare Workstation.msi" /passive
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
118
Command Line
A command line sample
msiexec /i "sources\Windows\VMware Workstation.msi" ADDLOCAL=ALL REMOVE=DHCP,NAT DESKTOP_SHORTCUT=0 DISABLE_AUTORUN=0 REMOVE_LICENSE=1 SERIALNUMBER=xxxxx-xxxxx-xxxxx-xxxxx sourcelist="%RIS%\%package%\sources" /L*v "%temp%\%trousse%.log" /norestart /q
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
118
Command Line
For 5.5.1, I installed directly from the .exe:

VMware-workstation-5.5.1-19175.exe /s /v"/qn ADDLOCAL=ALL ALLUSERS=2 REBOOT=ReallySuppress"

del /f "%ALLUSERSPROFILE%\Desktop\VMware Workstation.lnk"
del /f "%ALLUSERSPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch\VMware Workstation.lnk"
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows

Inventory Records (10)

View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.

Workstation

Version

5.5.9.5077

Uninstall String

MsiExec.exe /I{98D1A713-438C-4A23-8AB6-41B37C4A2D47}

Questions & Answers (8)

Questions & Answers related to VMware Workstation

0
ANSWERS
2
ANSWERED
2
ANSWERS
2
ANSWERED
2
ANSWERS
2
ANSWERED
2
ANSWERED

Blogs (2)

Blog posts related to VMware Workstation

blog
blog

Reviews (0)

Reviews related to VMware Workstation

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ