Downloads:
26,696
Downloads of v 0.3.59:
443
Last Update:
08 Dec 2016
Package Maintainer(s):
Software Author(s):
- TorGuard.net
Tags:
torguard-client admin vpn networking- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
TorGuard VPN Client (Install)
This is not the latest version of TorGuard VPN Client (Install) available.
- 1
- 2
- 3
0.3.59 | Updated: 08 Dec 2016
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
26,696
Downloads of v 0.3.59:
443
Maintainer(s):
Software Author(s):
- TorGuard.net
TorGuard VPN Client (Install) 0.3.59
This is not the latest version of TorGuard VPN Client (Install) available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by TorGuard.net. The inclusion of TorGuard.net trademark(s), if any, upon this webpage is solely to identify TorGuard.net goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install TorGuard VPN Client (Install), run the following command from the command line or from PowerShell:
To upgrade TorGuard VPN Client (Install), run the following command from the command line or from PowerShell:
To uninstall TorGuard VPN Client (Install), run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download torguard-client --internalize --version=0.3.59 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade torguard-client -y --source="'INTERNAL REPO URL'" --version="'0.3.59'" [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 torguard-client -y --source="'INTERNAL REPO URL'" --version="'0.3.59'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install torguard-client
win_chocolatey:
name: torguard-client
version: '0.3.59'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'torguard-client' do
action :install
source 'INTERNAL REPO URL'
version '0.3.59'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller torguard-client
{
Name = "torguard-client"
Version = "0.3.59"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'torguard-client':
ensure => '0.3.59',
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.
This package was approved by moderator flcdrg on 17 Dec 2016.
This software requires a subscription to the TorGuard VPN Service in order to work.
Every internet connection, regardless of personal or public wifi, binds you to the “terms and conditions” of that provider. Many times, these terms of usage are vague, leaving the safety of your personal data to be determined by a policy you probably don’t have access to. One doesn't have to be doing anything illegal either – there are many documented cases in which personal freedoms have been violated by ISP’s, website owners, and search engines. At TorGuard VPN, we believe every law abiding citizen has the right to encrypt and protect their personal data online.
Big businesses wouldn’t think of risking company secrets on an unsecured connection, so why should you?
TorGuard VPN service protects your online identity by providing you an anonymous IP address to hide behind. By using an encrypted VPN tunnel, this makes it impossible for your personal IP address or internet usage to be captured. Not even an external ISP, website, or search engine will be able to determine your real IP address. TorGuard anonymous VPN provides access to 1600+ Servers in over 50+ countries with just the click of a button. Take back your online privacy today and surf the web in complete privacy.
#NoEnv
#NoTrayIcon
SendMode Input
DetectHiddenText, off
DetectHiddenWindows, off
SetTitleMatchMode, 1 ;begins
winTitle = TAP-Windows ahk_class #32770
WinWait, %winTitle%, , 300
ControlClick, Button2, %winTitle%
ExitApp
$ErrorActionPreference = 'Stop';
$packageName = 'torguard-client'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$softwareName = '*TorGuard*'
$installerType = 'EXE'
$silentArgs = '/S'
$validExitCodes = @(0)
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
$key | % {
$file = "$($_.UninstallString)"
$ahkFile = Join-Path $toolsDir "chocolateyuninstall.ahk"
Start-Process -FilePath "AutoHotkey.exe" -Verb runas -ArgumentList $ahkFile
Uninstall-ChocolateyPackage -PackageName $packageName `
-FileType $installerType `
-SilentArgs "$silentArgs" `
-ValidExitCodes $validExitCodes `
-File "$file"
}
} 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"}
}
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
1. Download installer:
https://updates.torguard.biz/Software/Windows/torguard-setup-latest.exe
2. Download checksums:
https://updates.torguard.biz/Software/Windows/checksums.sha256
3. You can use one of the following methods to obtain the checksum:
- Can use powershell function 'Get-FileHash'
- Can use Chocolatey utility 'checksum.exe'
checksum32: a6c32dbdcedf763924bc808b8ff85a99a62c67d9bb5baac4ab6dcaa544384c47
Log in or click on link to see number of positives.
- torguard-client.0.3.59.nupkg (a4a2ce05a1a6) - ## / 56
- torguard-setup-latest.exe (a6c32dbdcedf) - ## / 56
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 |
---|---|---|---|---|
TorGuard VPN Client (Install) 4.8.29 | 169 | Thursday, April 4, 2024 | Approved | |
TorGuard VPN Client (Install) 4.8.28 | 123 | Monday, January 8, 2024 | Approved | |
TorGuard VPN Client (Install) 4.8.26 | 158 | Monday, December 11, 2023 | Approved | |
TorGuard VPN Client (Install) 4.8.24 | 69 | Thursday, November 2, 2023 | Approved | |
TorGuard VPN Client (Install) 4.8.23 | 218 | Thursday, November 2, 2023 | Approved | |
TorGuard VPN Client (Install) 4.8.15.20230218 | 454 | Sunday, February 19, 2023 | Approved | |
TorGuard VPN Client (Install) 4.8.15 | 56 | Friday, February 17, 2023 | Approved | |
TorGuard VPN Client (Install) 4.8.13 | 328 | Wednesday, September 7, 2022 | Approved | |
TorGuard VPN Client (Install) 4.8.12 | 311 | Friday, May 27, 2022 | Approved | |
TorGuard VPN Client (Install) 4.8.11 | 147 | Thursday, April 21, 2022 | Approved | |
TorGuard VPN Client (Install) 4.8.10 | 211 | Saturday, March 19, 2022 | Approved | |
TorGuard VPN Client (Install) 4.8.9 | 189 | Thursday, February 10, 2022 | Approved | |
TorGuard VPN Client (Install) 4.8.8 | 135 | Saturday, February 5, 2022 | Approved | |
TorGuard VPN Client (Install) 4.8.6 | 167 | Thursday, January 20, 2022 | Approved | |
TorGuard VPN Client (Install) 4.8.5 | 175 | Friday, December 24, 2021 | Approved | |
TorGuard VPN Client (Install) 4.8.4 | 151 | Saturday, December 4, 2021 | Approved | |
TorGuard VPN Client (Install) 4.8.2 | 156 | Thursday, November 11, 2021 | Approved | |
TorGuard VPN Client (Install) 4.8.1 | 132 | Friday, November 5, 2021 | Approved | |
TorGuard VPN Client (Install) 4.8.0 | 141 | Monday, November 1, 2021 | Approved | |
TorGuard VPN Client (Install) 4.7.8 | 142 | Tuesday, October 26, 2021 | Approved | |
TorGuard VPN Client (Install) 4.7.7 | 171 | Tuesday, October 5, 2021 | Approved | |
TorGuard VPN Client (Install) 4.7.5 | 153 | Tuesday, September 21, 2021 | Approved | |
TorGuard VPN Client (Install) 4.7.4 | 144 | Tuesday, September 7, 2021 | Approved | |
TorGuard VPN Client (Install) 4.7.3 | 238 | Thursday, July 22, 2021 | Approved | |
TorGuard VPN Client (Install) 4.7.2 | 192 | Thursday, June 17, 2021 | Approved | |
TorGuard VPN Client (Install) 4.7.0 | 232 | Tuesday, May 11, 2021 | Approved | |
TorGuard VPN Client (Install) 4.6.2 | 153 | Monday, May 3, 2021 | Approved | |
TorGuard VPN Client (Install) 4.6.0.20210429 | 135 | Thursday, April 29, 2021 | Approved | |
TorGuard VPN Client (Install) 4.6.0 | 101 | Thursday, April 29, 2021 | Approved | |
TorGuard VPN Client (Install) 4.5.1 | 247 | Wednesday, March 31, 2021 | Approved | |
TorGuard VPN Client (Install) 4.4.1 | 227 | Friday, February 12, 2021 | Approved | |
TorGuard VPN Client (Install) 4.4.0 | 193 | Wednesday, January 20, 2021 | Approved | |
TorGuard VPN Client (Install) 4.3.0 | 256 | Wednesday, December 2, 2020 | Approved | |
TorGuard VPN Client (Install) 4.2.0 | 264 | Tuesday, October 13, 2020 | Approved | |
TorGuard VPN Client (Install) 4.1.3 | 183 | Saturday, October 3, 2020 | Approved | |
TorGuard VPN Client (Install) 4.1.2 | 211 | Thursday, September 24, 2020 | Approved | |
TorGuard VPN Client (Install) 4.1.1.20200918 | 188 | Friday, September 18, 2020 | Approved | |
TorGuard VPN Client (Install) 4.1.1 | 151 | Thursday, September 17, 2020 | Approved | |
TorGuard VPN Client (Install) 4.1.0 | 200 | Thursday, September 10, 2020 | Approved | |
TorGuard VPN Client (Install) 4.0.1 | 260 | Thursday, August 13, 2020 | Approved | |
TorGuard VPN Client (Install) 3.99.4 | 201 | Monday, August 10, 2020 | Approved | |
TorGuard VPN Client (Install) 3.99.3 | 244 | Saturday, July 11, 2020 | Approved | |
TorGuard VPN Client (Install) 3.99.2 | 219 | Thursday, June 25, 2020 | Approved | |
TorGuard VPN Client (Install) 3.99.1 | 228 | Saturday, June 20, 2020 | Approved | |
TorGuard VPN Client (Install) 3.98.13 | 246 | Saturday, May 23, 2020 | Approved | |
TorGuard VPN Client (Install) 3.98.12 | 234 | Tuesday, May 12, 2020 | Approved | |
TorGuard VPN Client (Install) 3.98.10 | 267 | Thursday, April 23, 2020 | Approved | |
TorGuard VPN Client (Install) 3.98.8 | 177 | Wednesday, April 22, 2020 | Approved | |
TorGuard VPN Client (Install) 3.98.3 | 273 | Tuesday, March 31, 2020 | Approved | |
TorGuard VPN Client (Install) 3.98.2 | 259 | Thursday, March 5, 2020 | Approved | |
TorGuard VPN Client (Install) 3.98.1 | 193 | Saturday, February 29, 2020 | Approved | |
TorGuard VPN Client (Install) 3.97.4 | 346 | Sunday, January 5, 2020 | Approved | |
TorGuard VPN Client (Install) 3.97.3 | 181 | Wednesday, January 1, 2020 | Approved | |
TorGuard VPN Client (Install) 3.97.1 | 245 | Wednesday, December 18, 2019 | Approved | |
TorGuard VPN Client (Install) 3.97.0 | 175 | Monday, December 16, 2019 | Approved | |
TorGuard VPN Client (Install) 3.96.1 | 404 | Tuesday, July 23, 2019 | Approved | |
TorGuard VPN Client (Install) 3.96.0 | 230 | Wednesday, July 17, 2019 | Approved | |
TorGuard VPN Client (Install) 3.95.1 | 265 | Tuesday, May 28, 2019 | Approved | |
TorGuard VPN Client (Install) 3.95.0 | 261 | Thursday, April 25, 2019 | Approved | |
TorGuard VPN Client (Install) 3.94.0 | 255 | Monday, April 8, 2019 | Approved | |
TorGuard VPN Client (Install) 3.93.2 | 247 | Thursday, March 28, 2019 | Approved | |
TorGuard VPN Client (Install) 3.93.1 | 194 | Thursday, March 21, 2019 | Approved | |
TorGuard VPN Client (Install) 3.93.0 | 279 | Thursday, March 7, 2019 | Approved | |
TorGuard VPN Client (Install) 3.92.0 | 350 | Wednesday, December 19, 2018 | Approved | |
TorGuard VPN Client (Install) 3.90.0 | 348 | Wednesday, October 31, 2018 | Approved | |
TorGuard VPN Client (Install) 3.89.0 | 282 | Monday, October 1, 2018 | Approved | |
TorGuard VPN Client (Install) 3.88.0 | 344 | Thursday, August 23, 2018 | Approved | |
TorGuard VPN Client (Install) 3.87.0 | 314 | Thursday, August 9, 2018 | Approved | |
TorGuard VPN Client (Install) 3.86.1 | 351 | Friday, July 6, 2018 | Approved | |
TorGuard VPN Client (Install) 3.86.0 | 330 | Friday, June 29, 2018 | Approved | |
TorGuard VPN Client (Install) 3.85.0 | 321 | Wednesday, May 23, 2018 | Approved | |
TorGuard VPN Client (Install) 3.84.1 | 335 | Sunday, May 13, 2018 | Approved | |
TorGuard VPN Client (Install) 0.3.84 | 315 | Monday, April 30, 2018 | Approved | |
TorGuard VPN Client (Install) 0.3.83 | 303 | Friday, April 27, 2018 | Approved | |
TorGuard VPN Client (Install) 0.3.82 | 342 | Thursday, April 19, 2018 | Approved | |
TorGuard VPN Client (Install) 0.3.81 | 364 | Friday, April 6, 2018 | Approved | |
TorGuard VPN Client (Install) 0.3.80 | 354 | Wednesday, March 21, 2018 | Approved | |
TorGuard VPN Client (Install) 0.3.79 | 340 | Friday, March 16, 2018 | Approved | |
TorGuard VPN Client (Install) 0.3.78 | 396 | Friday, February 9, 2018 | Approved | |
TorGuard VPN Client (Install) 0.3.77 | 424 | Friday, December 8, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.76 | 389 | Friday, November 24, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.74 | 404 | Wednesday, November 15, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.71 | 433 | Thursday, October 5, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.70 | 414 | Tuesday, August 1, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.69 | 472 | Thursday, May 11, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.67.20170325 | 483 | Friday, March 24, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.67.20170324 | 422 | Friday, March 24, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.67 | 399 | Thursday, March 23, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.65 | 413 | Sunday, March 5, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.64 | 392 | Thursday, March 2, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.63 | 403 | Tuesday, January 17, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.62 | 408 | Wednesday, January 11, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.61 | 408 | Tuesday, January 10, 2017 | Approved | |
TorGuard VPN Client (Install) 0.3.60 | 433 | Wednesday, December 14, 2016 | Approved | |
TorGuard VPN Client (Install) 0.3.59 | 443 | Thursday, December 8, 2016 | Approved | |
TorGuard VPN Client (Install) 0.3.58 | 453 | Monday, November 21, 2016 | Approved | |
TorGuard VPN Client (Install) 0.3.56 | 387 | Friday, November 18, 2016 | Approved | |
TorGuard VPN Client (Install) 0.3.55 | 440 | Friday, October 21, 2016 | Approved |
Copyright © 2016 TorGuard.net
-
- autohotkey.portable (≥ 1.1.24)
Ground Rules:
- This discussion is only about TorGuard VPN Client (Install) and the TorGuard VPN Client (Install) 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 TorGuard VPN Client (Install), 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.