Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

30,033

Downloads of v 1.0.21.14067:

218

Last Update:

11 Oct 2022

Package Maintainer(s):

Software Author(s):

  • Twingate Inc.

Tags:

twingate zerotrust security vpn remoteaccess

Twingate (Client)

This is not the latest version of Twingate (Client) available.

  • 1
  • 2
  • 3

1.0.21.14067 | Updated: 11 Oct 2022

Downloads:

30,033

Downloads of v 1.0.21.14067:

218

Maintainer(s):

Software Author(s):

  • Twingate Inc.

Twingate (Client) 1.0.21.14067

This is not the latest version of Twingate (Client) available.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

Requires Windows 10 or newer.

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Twingate (Client), run the following command from the command line or from PowerShell:

>

To upgrade Twingate (Client), run the following command from the command line or from PowerShell:

>

To uninstall Twingate (Client), run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade twingate -y --source="'INTERNAL REPO URL'" --version="'1.0.21.14067'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade twingate -y --source="'INTERNAL REPO URL'" --version="'1.0.21.14067'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install twingate
  win_chocolatey:
    name: twingate
    version: '1.0.21.14067'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'twingate' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.0.21.14067'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller twingate
{
    Name     = "twingate"
    Version  = "1.0.21.14067"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'twingate':
  ensure   => '1.0.21.14067',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved by moderator TheCakeIsNaOH on 13 Oct 2022.

Description

Delivered as a cloud-based service, Twingate empowers IT teams to easily configure a software defined perimeter without changing infrastructure, and centrally manage user access to internal apps, whether they are on-prem or in the cloud.


tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

Confirm-Win10 19043

$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  unzipLocation = $toolsDir
  fileType      = 'msi'
  file64        = gi $toolsDir\*x64.msi
  softwareName  = 'twingate*'
  silentArgs    = "/qn /norestart /l*v `"$($env:TEMP)\$($packageName).$($env:ChocolateyPackageVersion).MsiInstall.log`" no_optional_updates=true"
  validExitCodes= @(0, 3010, 1641)
}

Install-ChocolateyInstallPackage @packageArgs
tools\chocolateyuninstall.ps1



$ErrorActionPreference = 'Stop';
$packageArgs = @{
  packageName   = $env:ChocolateyPackageName
  softwareName  = 'twingate*'
  fileType      = 'MSI'
  silentArgs    = "/qn /norestart"
  validExitCodes= @(0, 3010, 1605, 1614, 1641)
}

[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']

if ($key.Count -eq 1) {
  $key | % {
    $packageArgs['file'] = "$($_.UninstallString)"

    if ($packageArgs['fileType'] -eq 'MSI') {
      $packageArgs['silentArgs'] = "$($_.PSChildName) $($packageArgs['silentArgs'])"

      $packageArgs['file'] = ''
    } else {
    }

    Uninstall-ChocolateyPackage @packageArgs
  }
} elseif ($key.Count -eq 0) {
  Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
  Write-Warning "$($key.Count) matches found!"
  Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
  Write-Warning "Please alert package maintainer the following keys were matched:"
  $key | % {Write-Warning "- $($_.DisplayName)"}
}


tools\LICENSE.txt

From: https://www.twingate.com/terms/user/

LICENSE

User Terms of Service

Version date: May 26, 2020

Thanks for using Twingate! These user terms of service (“Terms”) and the [Customer Agreement](https://www.twingate.com/terms/) cover your access and use of our Services. Capitalized terms used below but not defined will have the meaning assigned to them in the Customer Agreement.

By using our Services, you’re agreeing to be bound by these Terms.

1. YOU, CUSTOMER AND TWINGATE
An organization or other third party that we refer to in these User Terms of Service as “Customer” has invited you to create or use a Twingate account, or download Twingate Software. The Customer has separately agreed to our Customer Terms or entered into a written agreement with us (in either case, the “Customer Agreement”) that permitted the Customer to create a Twingate account so that you and others could join. When you (as a User) set up an account for the Services or download and use Twingate Software, you acknowledge and agree that the Customer has certain choices and controls over your use of the Services. For example, Customer may provision or deprovision access to the Services, enable or disable third party integrations, and manage permissions or other settings, and these choices and instructions may result in changes to your access to the Services or use, disclosure, modification or deletion of Customer Data.

2. USE OF SERVICES
2.1 Services. By using the Services, you agree that:

(a) you are over the age of 16 and are the intended recipient of Customer’s invitation to the Services;

(b) you will safeguard your password to the Services, and keep your account information current; and

(c) you are not: (i) located in any country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country; or (ii) listed on any U.S. Government list of prohibited or restricted parties.

2.2 Restrictions. Unless otherwise expressly permitted in writing by Twingate, you will not (and will not allow a third party to):

(a) lease, sell, resell or use for timesharing or service bureau purposes the Services;

(b) interfere with, disrupt, alter, or modify any Services, or create an undue burden on the Services or the networks or services connected to the Services;

(c) engage in abusive or excessive usage of the Services, which usage is significantly in excess of average usage patterns that adversely affects the speed, responsiveness, stability, availability or functionality of the Services;

(d) use any framing techniques to enclose any Twingate Mark or Twingate Materials (defined below) or use any meta tags or other “hidden text” using the Twingate Marks;

(e) introduce unauthorized software or automated agents or scripts into the Services so as to create multiple accounts, generate automated searches, requests or queries, or to strip or mine data from the Services;

(f) use any method (whether manual or automated) to extract or scrape data from the Services;

(g) reverse engineer, decompile, disassemble or otherwise attempt to derive the source code, techniques, processes, algorithms, know-how or other information from the binary code portions of the Software by any means whatsoever, unless this restriction is prohibited by law;

(h) perform or publish any benchmark tests or analyses relating to the Services;

(i) purchase, access, or use the Services for the purpose of building or improving a competitive product or service, or for any other competitive purpose;

(j) circumvent or attempt to circumvent any limitations that Twingate imposes on your account in accordance with these Terms (such as account suspensions for non-payment);

(k) probe, scan, or test for vulnerabilities in the Services or any other Twingate system or network;

(l) use the Services for any unlawful purposes or activities;

(m) use the Services to transmit any code, agents, software, or links to such materials with the intent to do harm (such as viruses, worms, Trojan horses, and malware);

(n) share your User Account or access credentials to other User Accounts;

(o) use the Services in a way that would subject Twingate to any industry-specific regulations. For example, you may not use the Services to collect, protect, or otherwise handle “protected health information” (as defined in 45 C.F.R. §160.103 under United States federal regulations) without entering into a separate business associate agreement with Twingate that permits you to do so;

(p) you will not attempt to access, search, or create accounts for any of our Services by any means other than our publicly supported interfaces or as otherwise authorized by us;

(q) you will not use the Services to process, store or transmit material, including any Customer Data, in violation of any law or any third party rights, including without limitation intellectual property and privacy rights; or

(r) you will not use the Services in any circumstances where failure could lead to death, personal injury or environmental damage, and you further acknowledge that the Services are not designed or intended for such use.

3. SOFTWARE LICENSE
Twingate hereby grants to you a revocable, non-exclusive, non-transferable (except pursuant to Section 11.1 (Assignment)) and non-sublicensable license to install, copy and use the Software solely as necessary to use the Services and in accordance with the Agreement and all other Twingate documentation. Your license to the Software will end upon the termination of your right to use the applicable Services. Some Software may contain open source or third party software, which may have additional or different terms regarding such Software’s use.

4. BETA SERVICES
We sometimes release products and features that are Beta Services. Beta Services are made available so that we can collect user feedback, and if you use our Beta Services, you agree that we may contact you to collect such feedback. Beta Services are confidential until official launch. If you use any Beta Services, you agree not to disclose any information about those Services to anyone else without our permission.

5. TWINGATE INTELLECTUAL PROPERTY
The Services are protected by copyright, trademark, and other U.S. and foreign laws. Except as set forth herein, these Terms do not grant you any right, title, or interest in the Services, Twingate trademarks, logos and other brand features. We welcome feedback, but note that we may use comments or suggestions without any obligation to you.

6. CUSTOMER POLICIES AND YOUR DATA
As between us and Customer, you agree that it is solely Customer’s responsibility to (a) inform Users of any relevant Customer policies and practices and any settings that may impact you or the processing of Customer Data; (b) obtain any rights, permissions or consents from Users that are necessary for the lawful use of Customer Data and the operation of the Services; (c) ensure that the transfer and processing of Customer Data under the contract is lawful; and (d) respond to and resolve any dispute with Users relating to or based on the Services, Customer Data or Customer’s failure to fulfill these obligations. Twingate makes no representations or warranties of any kind, whether express or implied, to you relating to the Services, which are provided to you on an “as is” and “as available” basis.

7. APPLICATION OF CONSUMER LAW
Twingate is a tool intended for use by businesses and organizations, and not for consumer purposes. To the maximum extent permitted by law, you hereby acknowledge and agree that consumer laws do not apply. If however any consumer laws do apply and cannot otherwise be lawfully excluded, nothing in these Terms will restrict, exclude or modify any statutory warranties, guarantees, rights or remedies you have, and our liability is limited (at our option) to the replace or modify the Services or the pro-rata refund to Customer of pre-paid fees for your subscription covering the remainder of the term.

8. TERMINATION
If we believe that there is a violation of the Agreement, these Terms or any of our other policies that can be remedied by Customer, we will, in most cases, ask Customer to take action rather than intervene. However, we reserve the right to suspend or terminate your access to the Services with notice to you if you are in breach of these Terms.

These Terms remain effective until Customer’s subscription for you terminates, or your access to the Services has been terminated by Customer or us. Please contact Customer if you wish to terminate your account.

9. UPDATES TO THESE TERMS
Twingate may make changes to these Terms at any time for a variety of reasons, such as to reflect changes in applicable law or to account for new Services or functionality. The most current version of these Terms will be posted on the Twingate website. Changes will be effective no sooner than the day they are publicly posted. If you do not want to agree to any changes made to these Terms, you should stop using the Services, because by continuing to use the Services after the date the changes become effective, you indicate your agreement to be bound by the updated Terms.

10. APPLE APP STORE ADDITIONAL LICENSE TERMS
10.1 If the Software is provided to you through Apple Inc. (Apple Inc. together with all of its affiliates, “Apple”) App Store, the following terms and conditions apply to you in addition to all the other terms set forth herein:

(a) Apple is not responsible for the Services and has no obligation to furnish any maintenance or support services with respect to the Software or the Services.

(b) In the event of any failure of the Software to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the Software (if any) to the Customer. Except for the foregoing, to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the Software, and any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be governed by the Customer Agreement.

(c) Any claim in connection with the Software related to product liability, a failure to conform to applicable legal or regulatory requirements, or claims under consumer protection or similar legislation is governed by the Customer Agreement, and Apple is not responsible for such claim.

(d) Any third party claim that the Software or your possession and use of the Software infringes that third party’s Intellectual Property Rights will be governed by the Customer Agreement, and Apple will not be responsible for the investigation, defense, settlement and discharge of such intellectual property infringement claim.

(e) Apple shall be a third-party beneficiary of these Terms and upon your acceptance of these Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce these Terms against you.

11. MISCELLANEOUS
11.1 Assignment. Neither you nor Twingate may assign these Terms without the other party’s prior written consent (such consent not to be unreasonably withheld). However, Twingate may assign these Terms without notice or consent to an Affiliate or to a successor or acquirer, as the case may be, in connection with a merger, acquisition, corporate reorganization or consolidation, or the sale of all or substantially all of Twingate’s assets or of the Twingate business line to which the subject matter of these Terms relates. Any other attempt to transfer or assign is void.

11.2 Contracting Party: In these Terms, “Twingate,” “we,” “our”, and “us” each refer to Twingate Inc., a Delaware corporation and “You” and “your” each refer to the User using the Services or the Software.

11.3 Force Majeure. Neither Twingate nor you will be liable for inadequate performance to the extent caused by events beyond the reasonable control of a party, which may include denial-of-service attacks, internet disturbance, strikes, riots, pandemics or epidemics, natural disasters, acts of God, war, terrorism, and governmental action.

11.4 Governing Law; Jurisdiction: These Terms are governed by the laws of the state of California, without giving effect to any of its conflicts of laws principles. Any action at law or in equity arising out of or relating in any way to these Terms will be governed by the dispute resolution procedure set forth in Section 14 of the Customer Agreement.

11.5 Interpretation. These Terms were prepared and written in English. Any non-English translations of these Terms which may be made available is provided for convenience only and is not valid or legally binding. Use of section headings in these Terms are for convenience only and will not have any impact on the interpretation of particular provisions. The use of the words “includes,” “including,” “such as,” “for example,” and similar terms are deemed not to limit what else might be included.

11.6 Precedence. These Terms do not apply to the parties if the parties have entered into a separate agreement that expressly excludes the applicability of these online terms.

11.7 Severability. If any provision of these Terms is held to be unlawful, void, or for any reason unenforceable, then that provision will be limited or eliminated from these Terms to the minimum extent necessary and will not affect the validity and enforceability of any remaining provisions.

11.8 Waiver. A party’s failure or delay to enforce a provision under these Terms is not a waiver of its right to do later. Any waiver by Twingate of any provision of these Terms will be effective only if in writing and signed by Twingate. Any cause of action arising out of or related to the Services by you against Twingate must commence within 1 year after the cause of action accrues.

12. CONTACT US
You may contact us at any time with questions or comments using the following details:

Twingate Inc., 541 Jefferson Ave, Suite 100, Redwood City, CA 94061, USA

Email: [email protected]
tools\TwingateWindowsInstaller_x64.msi
md5: A9BB8C17D10CEBF7117B8DD5CAFA460F | sha1: 748CEEC1A266254867941923C41DF4A199CAAD59 | sha256: 9A3C53A6E79BD6093B835C1906F0A820761B18EF6142DCF416472C98A4687E10 | sha512: 6F1DF27085A93E2DC25F5C35FB5D03D86B28290341200FB42E6630340EA86285525409520BD71E3CF787905CB03958496442E13BC4C964EFE05B2A0D73E7D6BE
tools\VERIFICATION.txt

VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

Changelog available here: https://www.twingate.com/changelog/clients/
Package maintained by Twingate Inc. - contact [email protected] for assistance
Checksum verification is optional

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Twingate (Client) 2024.51.4797 990 Tuesday, February 27, 2024 Approved
Twingate (Client) 2024.28.3339 738 Wednesday, February 21, 2024 Approved
Twingate (Client) 2023.318.428 2490 Thursday, November 16, 2023 Approved
Twingate (Client) 2023.292.9388 797 Wednesday, November 1, 2023 Approved
Twingate (Client) 2023.250.8341 5424 Wednesday, September 13, 2023 Approved
Twingate (Client) 2023.227.7863 3115 Thursday, August 17, 2023 Approved
Twingate (Client) 2023.206.7161 4671 Wednesday, July 26, 2023 Approved
Twingate (Client) 1.0.33.24402 988 Friday, July 14, 2023 Approved
Twingate (Client) 1.0.32.23688 986 Wednesday, June 28, 2023 Approved
Twingate (Client) 1.0.31.23340 992 Monday, June 19, 2023 Approved
Twingate (Client) 1.0.30.22347 1182 Wednesday, May 31, 2023 Approved
Twingate (Client) 1.0.29.21087 924 Monday, April 17, 2023 Approved
Twingate (Client) 1.0.27.19340 790 Wednesday, March 1, 2023 Approved
Twingate (Client) 1.0.25.17984 883 Thursday, January 5, 2023 Approved
Twingate (Client) 1.0.22.14969 297 Wednesday, November 9, 2022 Approved
Twingate (Client) 1.0.21.14067 218 Tuesday, October 11, 2022 Approved
Twingate (Client) 1.0.20.12495 1602 Friday, July 29, 2022 Approved
Twingate (Client) 1.0.18.11084 1789 Friday, June 10, 2022 Approved
Discussion for the Twingate (Client) Package

Ground Rules:

  • This discussion is only about Twingate (Client) and the Twingate (Client) package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or Twingate (Client), or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus