Skip to content

Commit

Permalink
ShareGate changed to manual process, appveyor blocked by CloudFlare.
Browse files Browse the repository at this point in the history
  • Loading branch information
strausmann committed Oct 10, 2023
1 parent 606506f commit c701575
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 20 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>sharegate-desktop</id>
<version>20.0.2</version>
<version>21.0.1</version>
<title>ShareGate Desktop (Install)</title>
<packageSourceUrl>https://github.com/strausmann/ChocolateyPackages/tree/master/automatic/sharegate-desktop</packageSourceUrl>
<packageSourceUrl>https://github.com/strausmann/ChocolateyPackages/tree/master/manual/sharegate-desktop</packageSourceUrl>
<copyright>GROUPE SHAREGATE INC.</copyright>
<owners>Bjoern Strausmann</owners>
<authors>GROUPE SHAREGATE INC.</authors>
Expand All @@ -13,25 +13,26 @@
<licenseUrl>https://sharegate.com/terms</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>ShareGate Desktop’s easy-to-use interface packs a powerful set of features that make migrating to Office 365 and Microsoft 365 a breeze. Get everything you need for a successful move (and more), plus unlimited support from our award-winning team.</summary>
<description>ShareGate-Desktop
<description><![CDATA[ShareGate-Desktop
### Package Specific
#### Installer Properties
The following install arguments can be passed:
* `LAUNCHSHAREGATEONEXIT`
* `SHAREGATETARGETEXECUTABLE`
* `CLICKONCEAPPNAME`
* `PRODUCTNAMESTOUNINSTALL`
* `NEWERFOUND`
* `OLDAPPFOUND`
* `PREVIOUSFOUND`
* `WIXNETFX4RELEASEINSTALLED`
* `APPLICATIONFOLDER`
* `LAUNCHSHAREGATEONEXIT`
* `SHAREGATETARGETEXECUTABLE`
* `CLICKONCEAPPNAME`
* `PRODUCTNAMESTOUNINSTALL`
* `NEWERFOUND`
* `OLDAPPFOUND`
* `PREVIOUSFOUND`
* `WIXNETFX4RELEASEINSTALLED`
* `APPLICATIONFOLDER`
To append install arguments to the current silent arguments passed to the installer, use `--install-arguments="''"` or `--install-arguments-sensitive="''"`. To completely override the silent arguments with your own, also pass `--override-arguments`.
Example: `choco install sharegate-desktop [other options] --install-arguments="'PROPERTY=value PROPERTY2=value2'"`
Example: `choco install sharegate-desktop [other options] --install-arguments="'PROPERTY=value PROPERTY2=value2'"`
To have choco remember parameters on upgrade, be sure to set `choco feature enable -n=useRememberedArgumentsForUpgrades`.
</description>
]]></description>
<docsUrl>https://support-desktop.sharegate.com/hc/en-us</docsUrl>
<tags>sharegate desktop admin sharepoint microsoft365 migration tools</tags>
<releaseNotes>https://documentation.sharegate.com/hc/en-us/sections/360005954591-Patch-Notes</releaseNotes>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$url = 'https://assets.sharegate.com/sharegate/downloads/ShareGate.20.0.2.msi'
$checksum = 'f2028928b14bf4d81efd7cf3b5cb1777a64a8903c4815a0853b80f49d6cf9f82'
$url = 'https://assets.sharegate.com/sharegate/downloads/ShareGate.21.0.1.msi'
$checksum = '79045e4369aace4021e15bb5f97b91e19cf3a1cb5c55a5061d9691b995bb30ad'
$checksumType = 'sha256'

$packageArgs = @{
Expand All @@ -14,11 +14,7 @@ $packageArgs = @{
url = $url
checksum = $checksum
checksumType = $checksumType
url64bit = $url
checksum64 = $checksum
checksumType64= $checksumType
destination = $toolsDir
}

if (Get-Is32) { 'url64bit', 'checksum64', 'checksumType64' | ForEach-Object { $packageArgs.Remove($_) } }
Install-ChocolateyPackage @packageArgs
File renamed without changes.

0 comments on commit c701575

Please sign in to comment.