making ssh and syslog and enabling via powercli
Get-VMHost atl* | sort name | Foreach { Start-VMHostService -HostService ($_ | Get-VMHostService | Where { $_.Key -eq "TSM-SSH"} ) $_ | Get-VMHostService | Where { $_.Key -eq "TSM-SSH"} | Set-VMHostService -Policy on $_ | Set-VMHostAdvancedConfiguration UserVars.SuppressShellWarning 1 $_ | Set-VMHostAdvancedConfiguration -Name Syslog.global.logHost -Value "10.101.114.19" $_ | set-vmhostAdvancedconfiguration -name Vpx.Vpxa.config.log.level -Value "info" $_ | set-vmhostAdvancedconfiguration -name Config.HostAgent.log.level -value "info" $_ | Get-VMHostFirewallException |?{$_.Name -eq 'syslog'} | Set-VMHostFirewallException -Enabled:$true }