Syntax
Install-VMHostPatch [-VMHost] <VMHost[]> [-HostPath <String[]>] [-WebPath <String[]>] [-LocalPath <String[]>] [-HostUsername <String>] [-HostPassword <SecureString>] [-HostCredential <PSCredential>] [-Server <VIServer[]>] [-RunAsync] [-WhatIf] [-Confirm] [<CommonParameters>]Related Commands
Detailed Description
Updates the specified hosts. The cmdlet installs on the host patches that can be located locally, on a web location, or in a host file system.Parameters
Input Type
Return Type
VMware.VimAutomation.Types.Host.VMHostPatchNotes
The cmdlet works only on ESX 4.0 and higher versions.
Examples
-------------- Example 1 -------------- C:\PS>Install-VMHostPatch -VMHost $vmhost1,$vmhost2 -LocalPath c:\esx40\patches\ ESX400-200906001\metadata.zip -HostUsername admin -HostPassword pass Updates ESX servers using a local file. Before running the cmdlet, you must down load the patch file locally and extract to a folder. The name of the folder must contain the patch ID (for example, "ESX400-200906001"). Providing credentials w hen installing a patch from a local path is mandatory. -------------- Example 2 -------------- C:\PS>$vmhost1 | Install-VMHostPatch -WebPath http://myInternalWebServer/esx40/E SX400-200906001/metadata.zip Upgrades an ESX server using a Web location. Before running the cmdlet, you must download the patch file and extract to a folder that is published on a Web serv er. The patch URL address must contain the patch ID (for example, http://myInter nalWebServer/esx40/ESX400-200906001/). -------------- Example 3 -------------- C:\PS>$ds = Get-Datastore -Name "San1" Copy-DatastoreItem c:\temp\ESX400-200906001\ $ds.DatastoreBrowserPath -Recurse $vmhost1,$vmhost2 | Install-VMHostPatch -HostPath /vmfs/volumes/San1/ESX400-200906001 upgrades ESX servers using the -HostPath parameter. First, you must download the patch file and extract its contents to a temporary folder that is named after t he patch ID (for example, c:\temp\ESX400-200906001\). Copy the folder in the roo t folder of the San1 datastore and run Install-VMHostPatch providing the datasto re path to the patch. Note that the datastore path is case-sensitive.