-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3751b1b
commit a9bccf9
Showing
4 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
$packageName = 'zimbra-desktop' | ||
$installerType = 'msi' | ||
$silentArgs = '/quiet /qn /norestart' | ||
$url = 'https://s3.amazonaws.com/files.zimbra.com/downloads/zdesktop/7.3.1/b13063/zdesktop_7_3_1_ga_b13063_20170628044139_win32.msi' | ||
$checksum = '09c4d465a6b90032d649e18646a2484f' | ||
$checksumType = 'sha256' | ||
$url64 = 'https://s3.amazonaws.com/files.zimbra.com/downloads/zdesktop/7.3.1/b13063/zdesktop_7_3_1_ga_b13063_20170628044139_win64.msi' | ||
$checksum64 = 'e4f660fa32f875394866c05b70f1cccfb015f5679808f18109641e1991496028' | ||
$checksumType64 = 'sha256' | ||
$validExitCodes = @(0) | ||
|
||
Install-ChocolateyPackage -PackageName "$packageName" ` | ||
-FileType "$installerType" ` | ||
-SilentArgs "$silentArgs" ` | ||
-Url "$url" ` | ||
-Url64bit "$url64" ` | ||
-ValidExitCodes $validExitCodes ` | ||
-Checksum "$checksum" ` | ||
-ChecksumType "$checksumType" ` | ||
-Checksum64 "$checksum64" ` | ||
-ChecksumType64 "$checksumType64" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
$packageName = 'zimbra-desktop' | ||
$packageSearch = "Zimbra Desktop" | ||
$fileType = 'msi' | ||
$silentArgs = '/quiet /qn /norestart' | ||
$validExitCodes = @(0) | ||
|
||
Get-ItemProperty -Path @( 'HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*', | ||
'HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*', | ||
'HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\*' ) ` | ||
-ErrorAction:SilentlyContinue ` | ||
| Where-Object { $_.DisplayName -like $packageSearch } ` | ||
| ForEach-Object { Uninstall-ChocolateyPackage -PackageName "$packageName" ` | ||
-FileType "$fileType" ` | ||
-SilentArgs "$($_.PSChildName) $silentArgs" ` | ||
-ValidExitCodes $validExitCodes } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>zimbra-desktop</id> | ||
<version>7.3.1</version> | ||
<title>Zimbra Desktop</title> | ||
<authors>Zimbra Inc</authors> | ||
<owners>dtgm</owners> | ||
<licenseUrl>http://www.zimbra.com/license/</licenseUrl> | ||
<projectUrl>http://www.zimbra.com/downloads/zimbra-desktop</projectUrl> | ||
<iconUrl>https://cdn.rawgit.com/dtgm/chocolatey-packages/d93a3c81b69474d2c232f644dc6cef02a53f0838/icons/zimbra-desktop.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Zimbra Desktop client lets you manage your various email accounts in one desktop tool. You can store and synch your email, calendar, contacts, files and documents between the servers and your computer, making them locally accessible when working off line. When you re-connect, all your data automatically syncs between the servers and your computer. Zimbra mail, Yahoo! mail, Gmail, Microsoft Outlook and any other work or personal email account that uses POP or IMAP can be set up in Zimbra Desktop. Each account is separately maintained. When you receive new email messages in any of your accounts, and you have Internet access, the messages are automatically downloaded to your Zimbra Desktop. | ||
|
||
The installer package has the following components: | ||
|
||
* Zimbra Desktop application | ||
* A built-in web interface | ||
* A mini Zimbra server | ||
* Java framework | ||
|
||
Zimbra Desktop supports the following account types: | ||
|
||
* Zimbra (for use with Zimbra Collaboration Suite or Zimbra Appliance) | ||
* Gmail | ||
* Yahoo! Mail | ||
* Microsoft Exchange (via IMAP) | ||
* Other email services using POP3 or IMAP4 access | ||
|
||
[Forum](http://community.zimbra.com/)</description> | ||
<summary>Open source desktop project management</summary> | ||
<releaseNotes>#### Program | ||
* [Release notes]() | ||
* [Roadmap](https://pm.zimbra.com/) | ||
|
||
#### Package | ||
* Automatically built and uploaded by [dtgm](https://chocolatey.org/profiles/dtgm)</releaseNotes> | ||
<copyright>© Zimbra Inc</copyright> | ||
<tags>collaboration task schedule admin</tags> | ||
<projectSourceUrl>http://wiki.zimbra.com/wiki/Building_Zimbra_using_Git</projectSourceUrl> | ||
<packageSourceUrl>https://github.com/dtgm/chocolatey-packages/tree/master/automatic/zimbra-desktop/</packageSourceUrl> | ||
<bugTrackerUrl>https://bugzilla.zimbra.com/describecomponents.cgi?product=ZD</bugTrackerUrl> | ||
<dependencies> | ||
<dependency id="javaruntime" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.