fixitchris's Accepted Solutions

See page 5: http://www.vmware.com/app/vmdk/?src=vmdk
dblock would be the person that would know about this one. http://www.microsoft.com/whdc/system/vista/services.mspx
Take a look at http://communities.vmware.com/docs/DOC-9510. What functionality are you looking for?
Looks like you're returning the host's power state, I think... $hostView.Summary.Runtime | Out-File -FilePath $FilePath Take a look at http://www.vmwarescripting.com/index.php?topic=550.m... See more...
Looks like you're returning the host's power state, I think... $hostView.Summary.Runtime | Out-File -FilePath $FilePath Take a look at http://www.vmwarescripting.com/index.php?topic=550.msg758#new
d0se, VI Client is extensible with VI Toolkit/ VI SDK. Why not use WMI to enumerate all NICs + IPs? dblock, If you want to go the agent route, why not duplicate NetCat functionality to cr... See more...
d0se, VI Client is extensible with VI Toolkit/ VI SDK. Why not use WMI to enumerate all NICs + IPs? dblock, If you want to go the agent route, why not duplicate NetCat functionality to create a remote command prompt ? I can send you a VB.NET implementation of my remote command shell...
You'll need to use VIX_SERVICEPROVIDER_VMWARE_VI_SERVER Here is my implementation of connect: Dim m_host As String = "https://172.16.4.242:8333/sdk" '"https://172.16.2.2:8333/sdk" ' need ... See more...
You'll need to use VIX_SERVICEPROVIDER_VMWARE_VI_SERVER Here is my implementation of connect: Dim m_host As String = "https://172.16.4.242:8333/sdk" '"https://172.16.2.2:8333/sdk" ' need to specify ip NOT DNS Dim m_port As Integer = 0 'value does not matter when connecting to VMWARE server 2.0 Dim m_user As String = "user" 'must pass user/pass explicitly; current user does not work Dim m_pass As String = "pass" m_hostJob = m_lib.Connect(VixCOM.Constants.VIX_API_VERSION, VixCOM.Constants.VIX_SERVICEPROVIDER_VMWARE_VI_SERVER, m_host, m_port, m_user, m_pass, 0, Nothing, Nothing)