PoshCode Archive  Artifact [75da389d96]

Artifact 75da389d96855fbf4b9c51020e767df1ebb2ceb9918fc80dc952bc1b6fda0654:

  • File Update-Tools-Policy-VMwr.ps1 — part of check-in [6ad57b37ea] at 2018-06-10 14:09:11 on branch trunk — This script is taking a file in .txt with the Hostnames or IPs and performs an update to the VM Tools Policy from manual to “Upgrade VMware Tools on Power cycle”. (user: anksoswordpress size: 1610)

# encoding: utf-8
# api: powershell
# title: Update Tools Policy VMwr
# description: This script is taking a file in .txt with the Hostnames or IPs and performs an update to the VM Tools Policy from manual to “Upgrade VMware Tools on Power cycle”.
# version: 0.1
# type: script
# author: anksoswordpress
# license: CC0
# x-poshcode-id: 6152
# x-archived: 2016-03-18T21:24:02
# x-published: 2016-12-22T10:21:00
#
#
# 22/12/2015 Anastasis Ksouzafeiris
# PowerCLI script: UpdateToolsPolicy.ps1
# You can run it like this eg.:
# powercli> Set-ExecutionPolicy -Unrestricted
# powercli> UpdateToolsPolicy.ps1 | Export-Csv "results.csv"
# This script is taking a file in .txt with the Hostnames or IPs
# and performs an update to the VM Tools Policy from manual to 
# "Upgrade VMware Tools on Power cycle".


$vCname = Read-host Enter the vCenter or ESXi host name to connect
Connect-viserver $vcname
$VirtualMachines = Get-Content "VMList.txt"
if (-not (Get-PSSnapin VMware.VimAutomation.Core -ErrorAction SilentlyContinue)) {
	Add-PSSnapin VMware.VimAutomation.Core
}
foreach ($vm in $VirtualMachines ) {
	if($_.config.Tools.ToolsUpgradePolicy -ne "UpgradeAtPowerCycle" {
		$config = New-Object VMware.Vim.VirtualMachineConfigSpec
		$config.ChangeVersion = $vm.ExtensionData.Config.ChangeVersion
		$config.Tools = New-Object VMware.Vim.ToolsConfigInfo
		$config.Tools.ToolsUpgradePolicy = "UpgradeAtPowerCycle"
		$vm.ExtensionData.ReconfigVM($config)
		Write-Host "Update Tools Policy on $vm completed"
	}
}
Disconect-VIServer -server $vCname -Force -Confirm:$false