Skip to content

Instantly share code, notes, and snippets.

@leeramsay
Created August 19, 2016 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leeramsay/abb7044d57198b783cb2e30d759a727e to your computer and use it in GitHub Desktop.
Save leeramsay/abb7044d57198b783cb2e30d759a727e to your computer and use it in GitHub Desktop.
Deploy VMware Workstation 11.2.xxxx
<#
.SYNOPSIS
This script performs the installation or uninstallation of an application(s).
.DESCRIPTION
The script is provided as a template to perform an install or uninstall of an application(s).
The script either performs an "Install" deployment type or an "Uninstall" deployment type.
The install deployment type is broken down into 3 main sections/phases: Pre-Install, Install, and Post-Install.
The script dot-sources the AppDeployToolkitMain.ps1 script which contains the logic and functions required to install or uninstall an application.
.PARAMETER DeploymentType
The type of deployment to perform. Default is: Install.
.PARAMETER DeployMode
Specifies whether the installation should be run in Interactive, Silent, or NonInteractive mode. Default is: Interactive. Options: Interactive = Shows dialogs, Silent = No dialogs, NonInteractive = Very silent, i.e. no blocking apps. NonInteractive mode is automatically set if it is detected that the process is not user interactive.
.PARAMETER AllowRebootPassThru
Allows the 3010 return code (requires restart) to be passed back to the parent process (e.g. SCCM) if detected from an installation. If 3010 is passed back to SCCM, a reboot prompt will be triggered.
.PARAMETER TerminalServerMode
Changes to "user install mode" and back to "user execute mode" for installing/uninstalling applications for Remote Destkop Session Hosts/Citrix servers.
.PARAMETER DisableLogging
Disables logging to file for the script. Default is: $false.
.EXAMPLE
powershell.exe -Command "& { & '.\Deploy-Application.ps1' -DeployMode 'Silent'; Exit $LastExitCode }"
.EXAMPLE
powershell.exe -Command "& { & '.\Deploy-Application.ps1' -AllowRebootPassThru; Exit $LastExitCode }"
.EXAMPLE
powershell.exe -Command "& { & '.\Deploy-Application.ps1' -DeploymentType 'Uninstall'; Exit $LastExitCode }"
.EXAMPLE
Deploy-Application.exe -DeploymentType "Install" -DeployMode "Silent"
.NOTES
Toolkit Exit Code Ranges:
60000 - 68999: Reserved for built-in exit codes in Deploy-Application.ps1, Deploy-Application.exe, and AppDeployToolkitMain.ps1
69000 - 69999: Recommended for user customized exit codes in Deploy-Application.ps1
70000 - 79999: Recommended for user customized exit codes in AppDeployToolkitExtensions.ps1
.LINK
http://psappdeploytoolkit.com
#>
[CmdletBinding()]
Param (
[Parameter(Mandatory=$false)]
[ValidateSet('Install','Uninstall')]
[string]$DeploymentType = 'Install',
[Parameter(Mandatory=$false)]
[ValidateSet('Interactive','Silent','NonInteractive')]
[string]$DeployMode = 'Interactive',
[Parameter(Mandatory=$false)]
[switch]$AllowRebootPassThru = $false,
[Parameter(Mandatory=$false)]
[switch]$TerminalServerMode = $false,
[Parameter(Mandatory=$false)]
[switch]$DisableLogging = $false
)
Try {
## Set the script execution policy for this process
Try { Set-ExecutionPolicy -ExecutionPolicy 'ByPass' -Scope 'Process' -Force -ErrorAction 'Stop' } Catch {}
##*===============================================
##* VARIABLE DECLARATION
##*===============================================
## Variables: Application
[string]$appVendor = 'VMWare'
[string]$appName = 'Workstation 11'
[string]$appVersion = '11.1.2-2780323'
[string]$appArch = ''
[string]$appLang = 'EN'
[string]$appRevision = '01'
[string]$appScriptVersion = '1.0.0'
[string]$appScriptDate = '16/08/2016'
[string]$appScriptAuthor = 'Lee Ramsay'
##*===============================================
## Variables: Install Titles (Only set here to override defaults set by the toolkit)
[string]$installName = ''
[string]$installTitle = ''
##* Do not modify section below
#region DoNotModify
## Variables: Exit Code
[int32]$mainExitCode = 0
## Variables: Script
[string]$deployAppScriptFriendlyName = 'Deploy Application'
[version]$deployAppScriptVersion = [version]'3.6.8'
[string]$deployAppScriptDate = '02/06/2016'
[hashtable]$deployAppScriptParameters = $psBoundParameters
## Variables: Environment
If (Test-Path -LiteralPath 'variable:HostInvocation') { $InvocationInfo = $HostInvocation } Else { $InvocationInfo = $MyInvocation }
[string]$scriptDirectory = Split-Path -Path $InvocationInfo.MyCommand.Definition -Parent
## Dot source the required App Deploy Toolkit Functions
Try {
[string]$moduleAppDeployToolkitMain = "$scriptDirectory\AppDeployToolkit\AppDeployToolkitMain.ps1"
If (-not (Test-Path -LiteralPath $moduleAppDeployToolkitMain -PathType 'Leaf')) { Throw "Module does not exist at the specified location [$moduleAppDeployToolkitMain]." }
If ($DisableLogging) { . $moduleAppDeployToolkitMain -DisableLogging } Else { . $moduleAppDeployToolkitMain }
}
Catch {
If ($mainExitCode -eq 0){ [int32]$mainExitCode = 60008 }
Write-Error -Message "Module [$moduleAppDeployToolkitMain] failed to load: `n$($_.Exception.Message)`n `n$($_.InvocationInfo.PositionMessage)" -ErrorAction 'Continue'
## Exit the script, returning the exit code to SCCM
If (Test-Path -LiteralPath 'variable:HostInvocation') { $script:ExitCode = $mainExitCode; Exit } Else { Exit $mainExitCode }
}
#endregion
##* Do not modify section above
##*===============================================
##* END VARIABLE DECLARATION
##*===============================================
If ($deploymentType -ine 'Uninstall') {
##*===============================================
##* PRE-INSTALLATION
##*===============================================
[string]$installPhase = 'Pre-Installation'
## Show Welcome Message, close Internet Explorer if required, allow up to 3 deferrals, verify there is enough disk space to complete the install, and persist the prompt
Show-InstallationWelcome -CloseApps "vmnetcfg=Virtual Network Editor,vmware=VMware Workstation,vmplayer=VMware Player" -AllowDefer -DeferTimes 3 -CheckDiskSpace -PersistPrompt
## Show Progress Message (with the default message)
Show-InstallationProgress
## <Perform Pre-Installation tasks here>
# uninstall vmware workstation 11 if present
# necessary to install a fresh license
Execute-MSI -Action 'Uninstall' -Path "{0D94F75A-0EA6-4951-B3AF-B145FA9E05C6}";
#remove misc other 'vmware-tools' that don't uninstall unless you follow the gui only uninstaller, or via this method
"{003BFBBD-6C67-419E-A24D-0DCAFC3A5249}", <# tools-freebsd #>`
"{197597A7-AD33-4898-9D8E-73066818B464}", <# tools-netware #>`
"{AB1C87CB-1807-4CF0-B4C2-CEE14C18CDB4}", <# tools-solaris #>`
"{AE0F62A7-A1A2-407F-9F4C-48939BD9AD8D}", <# tools-oldwindowspre2k #>`
"{D102611A-6466-4101-A51D-51069303AC65}", <# tools-linux #>`
"{FFD9383C-01D5-4897-A954-43AF599AED30}" <# tools-windows #>`
| % { Execute-MSI -Action 'Uninstall' -Path "$_" } <# foreach item, uninstall #>
#grab all registry keys (folders) with workstation 11 licenses
$vm_lic_keys = gci -recurse "HKLM:\SOFTWARE\Wow6432Node\VMware, Inc.\VMware Workstation" `
| ? { $_.Name -like '*License.ws.11.*' } `
| select name
#recurse through them and remove reg items
$vm_lic_keys | % { Remove-Registrykey -Key "$_.name" }
##*===============================================
##* INSTALLATION
##*===============================================
[string]$installPhase = 'Installation'
## Handle Zero-Config MSI Installations
If ($useDefaultMsi) {
[hashtable]$ExecuteDefaultMSISplat = @{ Action = 'Install'; Path = $defaultMsiFile }; If ($defaultMstFile) { $ExecuteDefaultMSISplat.Add('Transform', $defaultMstFile) }
Execute-MSI @ExecuteDefaultMSISplat; If ($defaultMspFiles) { $defaultMspFiles | ForEach-Object { Execute-MSI -Action 'Patch' -Path $_ } }
}
Write-Log -Message "Executing install of: $appVendor - $appName - $appVersion" -Source $deployAppScriptFriendlyName
Execute-Process -Path 'VMware-workstation-full-11.1.2-2780323.exe' -Parameters '/s /nsr /v EULAS_AGREED=1 DATACOLLECTION=0 AUTOSOFTWAREUPDATE=0 REMOVE_LICENSE=1 SERIALNUMBER="xxxxx-xxxxxx-xxxxx-xxxxx-xxxxx"' -WaitForMSIExec:$true
Write-Log -Message "Executed install of: $appVendor - $appName - $appVersion" -Source $deployAppScriptFriendlyName
##*===============================================
##* POST-INSTALLATION
##*===============================================
[string]$installPhase = 'Post-Installation'
# Reg file existance for SCCM, ugly method to determine I've serialised with a 2016 onward license (expires 2017)
$vmware_reg_path = "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc."
$vmware_lic_key = "2016_workstation_license"
set-registrykey -key "$vmware_reg_path" -name "$vmware_lic_key" -value "1"
## Display a message at the end of the install
#If (-not $useDefaultMsi) { Show-InstallationPrompt -Message 'You can customize text to appear at the end of an install or remove it completely for unattended installations.' -ButtonRightText 'OK' -Icon Information -NoWait }
}
ElseIf ($deploymentType -ieq 'Uninstall')
{
##*===============================================
##* PRE-UNINSTALLATION
##*===============================================
[string]$installPhase = 'Pre-Uninstallation'
## Show Welcome Message, close Internet Explorer with a 60 second countdown before automatically closing
Show-InstallationWelcome -CloseApps "vmnetcfg=Virtual Network Editor,vmware=VMware Workstation,vmplayer=VMware Player" -CloseAppsCountdown 60
## Show Progress Message (with the default message)
Show-InstallationProgress
## <Perform Pre-Uninstallation tasks here>
##*===============================================
##* UNINSTALLATION
##*===============================================
[string]$installPhase = 'Uninstallation'
## Handle Zero-Config MSI Uninstallations
If ($useDefaultMsi) {
[hashtable]$ExecuteDefaultMSISplat = @{ Action = 'Uninstall'; Path = $defaultMsiFile }; If ($defaultMstFile) { $ExecuteDefaultMSISplat.Add('Transform', $defaultMstFile) }
Execute-MSI @ExecuteDefaultMSISplat
}
# uninstall vmware workstation 11
Execute-MSI -Action 'Uninstall' -Path "{0D94F75A-0EA6-4951-B3AF-B145FA9E05C6}";
#remove misc other 'vmware-tools' that don't uninstall unless you follow the gui only uninstaller, or via this method
"{003BFBBD-6C67-419E-A24D-0DCAFC3A5249}", <# tools-freebsd #>`
"{197597A7-AD33-4898-9D8E-73066818B464}", <# tools-netware #>`
"{AB1C87CB-1807-4CF0-B4C2-CEE14C18CDB4}", <# tools-solaris #>`
"{AE0F62A7-A1A2-407F-9F4C-48939BD9AD8D}", <# tools-oldwindowspre2k #>`
"{D102611A-6466-4101-A51D-51069303AC65}", <# tools-linux #>`
"{FFD9383C-01D5-4897-A954-43AF599AED30}" <# tools-windows #>`
| % { Execute-MSI -Action 'Uninstall' -Path "$_" } <# foreach item, uninstall #>
#grab all registry keys (folders) with workstation 11 licenses
$vm_lic_keys = gci -recurse "HKLM:\SOFTWARE\Wow6432Node\VMware, Inc.\VMware Workstation" `
| ? { $_.Name -like '*License.ws.11.*' } `
| select name
#recurse through them and remove reg items
$vm_lic_keys | % { Remove-Registrykey -Key "$_.name" }
#Unfortunately, I haven't found a neat way to uninstall all components of vmware workstation in one go
# (i.e. vmware haven't got a tool that works for uninstall)
#when you uninstall the workstation 11 msi, it leaves most components behind (which are harmless, as far as I can tell)
#If you try and follow the way detailed on vmware's website/the registry, it won't silently uninstall, i.e. it throws a GUI prompt you must click through.
#C:\ProgramData\VMware\VMware Workstation\Uninstaller\uninstall.exe -x -S "C:\ProgramData\VMware\VMware Workstation\Uninstaller\
#One thing that isn't harmless though, is that all these uninstallers do not remove the entry from
# appwiz.cpl (VMware Workstation is still listed as installed)
#and a somewhat useless uninstaller in:
# C:\ProgramData\VMware\VMware Workstation
#So best scenario I can do at the moment is simply remove the reg keys for the appwiz.cpl entry, so the system believes vmware workstation is largely uninstalled.
#This does not cause issues when you re-install, and older content left there is replaced on new install.
#Remove appwiz.cpl workstation entry
Remove-Registrykey -Key "HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\VMware_Workstation"
#Mmmmm. Neat and tidy.
Write-Log -Source $deployAppScriptFriendlyName -Message "Finished uninstallation: $appVendor - $appName - $appVersion"
##*===============================================
##* POST-UNINSTALLATION
##*===============================================
[string]$installPhase = 'Post-Uninstallation'
## <Perform Post-Uninstallation tasks here>
# Reg file existance for SCCM, ugly method to determine I've serialised with a 2016 onward license (expires 2017)
$vmware_reg_path = "HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc."
$vmware_lic_key = "2016_workstation_license"
remove-registrykey -key "$vmware_reg_path" -name "$vmware_lic_key";
Write-Log -Message "Removed NMT provided tag for license existance" -Source $deployAppScriptFriendlyName;
}
##*===============================================
##* END SCRIPT BODY
##*===============================================
## Call the Exit-Script function to perform final cleanup operations
Exit-Script -ExitCode $mainExitCode
}
Catch {
[int32]$mainExitCode = 60001
[string]$mainErrorMessage = "$(Resolve-Error)"
Write-Log -Message $mainErrorMessage -Severity 3 -Source $deployAppScriptFriendlyName
Show-DialogBox -Text $mainErrorMessage -Icon 'Stop'
Exit-Script -ExitCode $mainExitCode
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment