본문 바로가기

VMware

VMware Worstation Silent Install

VMware Workstation 의 경우 설치 시간이 무지 오래 걸리죠.
Silent 설치 방법을 이용하면 좀 빨리 설치할 수 있습니다. 단 미리 압축풀 때 걸리는 시간 제외 ^^

출처 : Installing VMware Workstation Silently

1. VMware Workstation installer에서 Admin 설치용 이미지 풀기

setup.exe /a /s /v"/qn TARGETDIR=<InstallTempPath>"
VMware-workstation-5.5.3-34685.exe /a /s /v"/qn TARGETDIR=E:\App\VMware Workstation v5.5.3 34685\Install"

2011.07.27 VMware Workstation 7.x 의 경우 옵션이 바뀌었습니다. /s /e <install_temp_path> Install Workstation Silently
2008.09.05 Installing Workstation Silently
2007.10.19
VMware Workstation 6.0.x 의 경우 TRAGETDIR 에 공백이 들어갈 경우 이미지 풀기가 안 됩니다.

2. msiexec 를 사용하여 전 단계에서 푼 이미지로  설치

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

전 아래처럼 데스크탑 단축아이콘 미설치, Disabe CD Autorun 미적용, 시리얼 등 지정해서 설치했습니다.
msiexec -i "E:\App\VMware Workstation v5.5.3 34685\Install\VMware Workstation.msi" ADDLOCAL=ALL /qn DESKTOP_SHORTCUT="0" DISABLE_AUTORUN="0" SERIALNUMBER=xxxxx-xxxxx-xxxxx-xxxxx

2009.06.05 ADDLOCAL=ALL 삭제 (Typical Install -> Eclipse plugin 설치 x), REBOOT=ReallySuppress 삭제 (자동 리부팅 방지)
msiexec -i "F:\App\VMware Workstation v6.5.2 156735\Install\VMware Workstation.msi" DESKTOP_SHORTCUT="0" DISABLE_AUTORUN="0" SERIALNUMBER=xxxxx-xxxxx-xxxxx-xxxxx REBOOT=ReallySuppress /qn

REMOVE= property 설치시 제외할 기능 (VMware Player, 일본어 관련 부분 등 제거나 가능했으면 -.-)
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

Custom Installation Properties 사용자 설치 옵션
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

VMWare 5.0 how to install Silent? http://www.msfn.org/board/index.php?showtopic=59428
VMWare 5.5.29772 shrinked http://www.msfn.org/board/index.php?showtopic=80617
VMWare 5 Final AutoIT Script Issues http://www.msfn.org/board/index.php?showtopic=48164