VMware Cloud Community
ADKeizer
Contributor
Contributor
Jump to solution

I need to know how to install just the agent from the command line.

I am using the VMware-converter-en-6.2.0-8466193 installer.  I am using a script to install it silently.  I would like to learn how to tell the installer to install just the agent.  Does anyone know how to do that?

Reply
0 Kudos
1 Solution

Accepted Solutions
CWestwater
Enthusiast
Enthusiast
Jump to solution

This takes a few steps. I am assuming you have the file VMware-Converter-Agent.exe found in C:\Program Files (x86)\VMware\VMware vCenter Converter Standalone

You then need to extract the MSI from the .exe. In a command prompt browse to a folder with the .exe in, say C:\Temp. Then run:

VMware-Converter-Agent.exe /s /x /b:"C:\Temp" /v"/qn"

This will extract the file VMware vCenter Converter Standalone Agent.msi to C:\Temp

You can then install the agent silently by using the command:

"VMware vCenter Converter Standalone Agent.msi" /qn

View solution in original post

Reply
0 Kudos
5 Replies
CWestwater
Enthusiast
Enthusiast
Jump to solution

This takes a few steps. I am assuming you have the file VMware-Converter-Agent.exe found in C:\Program Files (x86)\VMware\VMware vCenter Converter Standalone

You then need to extract the MSI from the .exe. In a command prompt browse to a folder with the .exe in, say C:\Temp. Then run:

VMware-Converter-Agent.exe /s /x /b:"C:\Temp" /v"/qn"

This will extract the file VMware vCenter Converter Standalone Agent.msi to C:\Temp

You can then install the agent silently by using the command:

"VMware vCenter Converter Standalone Agent.msi" /qn

Reply
0 Kudos
ADKeizer
Contributor
Contributor
Jump to solution

Thanks for the quick response.  I will get right on it and let you know how it goes.

Is this documented anywhere?  I searched all over the place.

Reply
0 Kudos
ADKeizer
Contributor
Contributor
Jump to solution

That worked!  Thanks.  Just the agent is now listed in the control panel.

Reply
0 Kudos
CWestwater
Enthusiast
Enthusiast
Jump to solution

No it's not documented. Just figured it out for you!

Reply
0 Kudos
POCEH
VMware Employee
VMware Employee
Jump to solution

Try install with the following line:

VMware-Converter-Agent.exe /s /v"/qn /l*v %TEMP%\vmconvagentmsi.log REBOOT=ReallySuppress AGENT_PORT=9089 VMSYSTEMP=%TEMP%"

HTH

Reply
0 Kudos