VMware Cloud Community
tekhie
Contributor
Contributor
Jump to solution

Problem retrieving Tech Support Mode Status in vsphere 4.1

hi, when running the following on an ESXi4.0 host it retrieves the status of whether tech support mode is enabled or not. When i run the same command against a vsphere 4.1 host it does not. command <Get-VMHostAdvancedConfiguration -Name VMkernel.Boot.techSupportMode>

Is there a way to extract whether the tech support mode is enabled on an esxi 4.1 host ?

thanks

0 Kudos
1 Solution

Accepted Solutions
Dave_Mishchenko
Immortal
Immortal
Jump to solution

Tech Support mode now runs as two services - local TSM and remote TSM (SSH).

You can query Remote TSM with the following:

 Get-VMhostService -VMhost $VMhost | where {$_.Key -eq "TSM-SSH"}  

Local TSM is has a key of "TSM"






Dave

VMware Communities User Moderator

Now available - vSphere Quick Start Guide

Do you have a system or PCI card working with VMDirectPath? Submit your specs to the Unofficial VMDirectPath HCL.

View solution in original post

0 Kudos
2 Replies
Dave_Mishchenko
Immortal
Immortal
Jump to solution

Tech Support mode now runs as two services - local TSM and remote TSM (SSH).

You can query Remote TSM with the following:

 Get-VMhostService -VMhost $VMhost | where {$_.Key -eq "TSM-SSH"}  

Local TSM is has a key of "TSM"






Dave

VMware Communities User Moderator

Now available - vSphere Quick Start Guide

Do you have a system or PCI card working with VMDirectPath? Submit your specs to the Unofficial VMDirectPath HCL.

0 Kudos
tekhie
Contributor
Contributor
Jump to solution

hi dave

thats awesone - thanks for clarifying

0 Kudos