Taken from here >> http://communities.vmware.com/message/1005498
Connect-VIServer cw-vc
Get-VM | % { Get-View $_.ID} | `
% {
$spec = new-object VMware.Vim.VirtualMachineConfigSpec
$spec.tools = New-Object VMware.Vim.ToolsConfigInfo
$spec.tools.syncTimeWithHost = $true
Get-View($_.ReconfigVM_Task($spec))
}