Difference between revisions of "GoToMeeting"
From WPKG | Open Source Software Deployment and Distribution
m |
(GoToMeeting) |
||
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/documents http://support.citrixonline.com/en_US/GoToMeeting/documents] | ||
+ | |||
+ | 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 [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]. |
Revision as of 08:50, 22 May 2012
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/documents
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>