Difference between revisions of "Active Sync"
From WPKG | Open Source Software Deployment and Distribution
(New page: Use the following XML file for Microsoft Active Sync: <PRE> <?xml version="1.0" encoding="utf-8" ?> <packages> <package id='ActiveSync' name='Microsoft Active Sync' revision='45' priorit...) |
m |
||
Line 1: | Line 1: | ||
− | Use the following XML file for Microsoft Active Sync: | + | Use the following XML file for a silent installer of Microsoft Active Sync: |
− | < | + | <source lang="xml"> |
<?xml version="1.0" encoding="utf-8" ?> | <?xml version="1.0" encoding="utf-8" ?> | ||
<packages> | <packages> | ||
Line 14: | Line 14: | ||
</packages> | </packages> | ||
− | </ | + | </source> |
[[Category:Silent Installers]] | [[Category:Silent Installers]] |
Latest revision as of 12:58, 4 February 2008
Use the following XML file for a silent installer of Microsoft Active Sync:
<?xml version="1.0" encoding="utf-8" ?>
<packages>
<package id='ActiveSync' name='Microsoft Active Sync' revision='45' priority='50' reboot='false' >
<!-- Microsoft Active Sync -->
<check type='uninstall' condition='exists' path='Microsoft ActiveSync' />
<install cmd='msiexec /qn /i "%SOFTWARE%\Microsoft ActiveSync v.4.5\setup.msi"' />
<remove cmd='msiexec /qn /x "%SOFTWARE%\Microsoft ActiveSync v.4.5\setup.msi"' />
<upgrade cmd='msiexec /qn /i "%SOFTWARE%\Microsoft ActiveSync v.4.5\setup.msi"' />
</package>
</packages>