Difference between revisions of "GoToMeeting"
From WPKG | Open Source Software Deployment and Distribution
m |
(Updated the MSI download link to one that works http://support.citrixonline.com/en_US/gotomeeting/all_files/GTM020012) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
This is a silent installer for the GoToMeeting video codec. | This is a silent installer for the GoToMeeting video codec. | ||
+ | |||
+ | Newer admin MSI are now available from here [http://support.citrixonline.com/en_US/gotomeeting/all_files/GTM020012 http://support.citrixonline.com/en_US/gotomeeting/all_files/GTM020012] | ||
+ | |||
+ | A new package using these would go like this: | ||
+ | |||
+ | <source lang="xml"> | ||
+ | <package id="gotomeeting" | ||
+ | name="Citix GoToMeeting" | ||
+ | revision="%version%" | ||
+ | reboot="false" | ||
+ | priority="100"> | ||
+ | <variable name="version" value="5.1.0.880"/> | ||
+ | <check architecture="x86" type="file" condition="exists" path="%PROGRAMFILES%\Citrix\GoToMeeting\880\G2MUninstall.exe" /> | ||
+ | <check architecture="x64" type="file" condition="exists" path="%PROGRAMFILES(x86)%\Citrix\GoToMeeting\880\G2MUninstall.exe" /> | ||
+ | <install cmd='msiexec /i %SOFTWARE%\gotomeeting\G2MSetup5.1.880_www_IT.msi ALLUSERS=1 /qn' /> | ||
+ | <remove architecture="x86" cmd='%PROGRAMFILES%\Citrix\GoToMeeting\880\G2MUninstall.exe /uninstall' /> | ||
+ | <remove architecture="x64" cmd='%PROGRAMFILES(x86)%\Citrix\GoToMeeting\880\G2MUninstall.exe /uninstall' /> | ||
+ | </package> | ||
+ | </source> | ||
You can download the codec from the [https://www4.gotomeeting.com/codec?Portal=www.gotomeeting.com GoToMeeting website]. | You can download the codec from the [https://www4.gotomeeting.com/codec?Portal=www.gotomeeting.com GoToMeeting website]. |
Latest revision as of 22:00, 20 August 2013
This is a silent installer for the GoToMeeting video codec.
Newer admin MSI are now available from here http://support.citrixonline.com/en_US/gotomeeting/all_files/GTM020012
A new package using these would go like this:
<package id="gotomeeting"
name="Citix GoToMeeting"
revision="%version%"
reboot="false"
priority="100">
<variable name="version" value="5.1.0.880"/>
<check architecture="x86" type="file" condition="exists" path="%PROGRAMFILES%\Citrix\GoToMeeting\880\G2MUninstall.exe" />
<check architecture="x64" type="file" condition="exists" path="%PROGRAMFILES(x86)%\Citrix\GoToMeeting\880\G2MUninstall.exe" />
<install cmd='msiexec /i %SOFTWARE%\gotomeeting\G2MSetup5.1.880_www_IT.msi ALLUSERS=1 /qn' />
<remove architecture="x86" cmd='%PROGRAMFILES%\Citrix\GoToMeeting\880\G2MUninstall.exe /uninstall' />
<remove architecture="x64" cmd='%PROGRAMFILES(x86)%\Citrix\GoToMeeting\880\G2MUninstall.exe /uninstall' />
</package>
You can download the codec from the GoToMeeting website.
GoToMeeting Video Codec
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="gotomeeting"
name="GoToMeeting Video Codec 4.5.0.457"
revision="457"
reboot="false"
priority="0">
<check type="file" condition="exists" path="%PROGRAMFILES%\Citrix\GoToMeeting\457\G2M.dll" />
<install cmd='%comspec% /c "%SOFTWARE%\GoToMeeting\g2m_codec.exe /silent"' />
<upgrade cmd='%comspec% /c "%SOFTWARE%\GoToMeeting\g2m_codec.exe /silent"' />
<remove cmd='' />
</package>
</packages>