
86,734
Downloads
1,373
Downloads of v 7.0.10
11/15/2017
Last update
The Tor software protects you by bouncing your communications around a distributed network of relays run by volunteers all around the world: it prevents somebody watching your Internet connection from learning what sites you visit, it prevents the sites you visit from learning your physical location, and it lets you access sites which are blocked.
The Tor Browser Bundle lets you use Tor on Windows without needing to install any software. It comes with a pre-configured web browser to protect your anonymity, and is self-contained.
This package puts the Tor Browser Bundle into $env:ChocolateyBinRoot\tor-browser
.
To install Tor Browser Bundle, run the following command from the command line or from PowerShell:
C:\> choco install tor-browser
--version 7.0.10
To upgrade Tor Browser Bundle, run the following command from the command line or from PowerShell:
C:\> choco upgrade tor-browser
--version 7.0.10
Files
Hide- tools\chocolateyInstall.ps1
Show
$ErrorActionPreference = 'Stop' $toolsDir = Split-Path -Parent $MyInvocation.MyCommand.Definition . "$toolsDir\helpers.ps1" $data = GetDownloadInformation -toolsPath $toolsDir $destinationFolder = GetInstallDirectory -toolsPath $toolsDir $packageArgs = @{ PackageName = 'tor-browser' FileFullPath = Join-Path $env:TEMP "tor-browserInstall.exe" Url = $data.URL Checksum = $data.Checksum ChecksumType = 'sha256' } Get-ChocolateyWebFile @packageArgs Write-Output "Installing $($packageArgs.PackageName) with language code: '$($data.Locale)'..." Start-Process -Wait $packageArgs.FileFullPath -ArgumentList '/S', "/D=$destinationFolder" Remove-Item $packageArgs.FileFullPath -Force -ea 0 # Create .ignore files for exe’s Get-ChildItem -Path $destinationFolder -Recurse | Where { $_.Extension -eq '.exe'} | % { New-Item $($_.FullName + '.ignore') -Force -ItemType file # Suppress output of New-Item } | Out-Null $desktop = [System.Environment]::GetFolderPath('Desktop') Install-ChocolateyShortcut ` -ShortcutFilePath "$desktop\Tor Browser.lnk" ` -TargetPath "$toolsDir\tor-browser\Browser\firefox.exe" ` -WorkingDirectory "$toolsDir\tor-browser\Browser" # set NTFS modify file permissions to $toolsDir\tor-browser\ for user account that installed the package $WhoAmI=whoami $Acl = Get-Acl "$toolsDir\tor-browser" $Ar = New-Object system.security.accesscontrol.filesystemaccessrule($WhoAmI,"Modify",'ContainerInherit,ObjectInherit', 'None', "Allow") $Acl.SetAccessRule($Ar) Set-Acl "$toolsDir\tor-browser" $Acl
- tools\chocolateyUninstall.ps1
Show
$ErrorActionPreference = 'Stop' $desktop = [System.Environment]::GetFolderPath('Desktop') if (Test-Path "$desktop\Tor Browser.lnk") { Write-Host "Removing Desktop shortcut..." Remove-Item -Force -ea 0 "$desktop\Tor Browser.lnk" }
- tools\helpers.ps1
Show
function GetDownloadsData() { param($filePath) $data = Get-Content $filePath | ConvertFrom-Csv -Delimiter '|' return $data } function GetLocaleData() { param($downloadData) $availableLocales = $downloadData | select -expand Locale $pp = Get-PackageParameters $preferredLocale = if ($pp.Locale) { $pp.Locale } else { (Get-Culture).Name } $twoLetterLocale = (Get-Culture).TwoLetterISOLanguageName $fallbackLocale = 'en-US' $locales = $preferredLocale,$twoLetterLocale,$fallbackLocale foreach ($locale in $locales) { $localeMatch = $availableLocales | ? { $_ -eq $locale } | select -first 1 if (!$localeMatch -and $locale -ne $null -and $locale.Count -eq 2) { $localeMatch = $availableLocales | ? { ($_ -split '-' | select -first 1) -eq $locale } | select -first 1 } if ($localeMatch -and $locale -ne $null) { break } } return $downloadData | ? { $_.Locale -eq $locale } | select -first 1 } function GetDownloadInformation() { param($toolsPath) $dlData = GetDownloadsData "$toolsPath\LanguageChecksums.csv" if (!$dlData) { throw "No URLs is available to download from!" } $locale = GetLocaleData $dlData return $locale } function GetInstallDirectory() { param($toolsPath) $pp = Get-PackageParameters if ($pp.InstallDir) { return $pp.InstallDir } $binRoot = Get-ToolsLocation $destinationFolder = Join-Path $binRoot "tor-browser" if (!(Test-Path $destinationFolder)) { $destinationFolder = Join-Path $toolsPath "tor-browser" } else { Write-Warning @( 'Deprecated installation folder detected (binRoot). ' + 'This package will continue to install tor-browser there ' + 'unless you manually remove it from "' + $destinationFolder + '".' ) } $desktopPath = [System.Environment]::GetFolderPath('Desktop') $oldDestinationFolder = Join-Path $desktopPath 'Tor-Browser' if ((Test-Path $oldDestinationFolder) -and ($oldDestinationFolder -ne $destinationFolder)) { $destinationFolder = $oldDestinationFolder Write-Warning @( 'Deprecated installation fodler detected: Desktop/Tor-Browser. ' + 'This package will continue to install tor-browser there unless you ' + 'remove the deprecated installation folder. After your did that, reinstall ' + 'this package again with the "--force" parameter. Then it will be installed ' + 'to the package tools directory.' ) } return $destinationFolder }
- tools\LanguageChecksums.csv
Show
#TYPE Selected.System.String "Locale"|"Checksum"|"URL" "pl"|"29319e73543f4f8260b1ec60f34951880ee4ab9d361e19e77bf01627fb61b057"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_pl.exe" "ru"|"edaa53c93687d35049a6e9a5824206b95344af54cd52dbcc9508c5ef83f4b819"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_ru.exe" "nl"|"dd86ee17c359d0d1619c03c8b47bd6f1f4239a273e3248fbf698436c8a0fe533"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_nl.exe" "fa"|"90a08467dd3106295c1726f2c9284a1d845d853b79beb71695c91e4c63e0522d"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_fa.exe" "zh-CN"|"c69f0f06bfd5e5db449816da05e53f837bb59ef5cbcc4e417409db9f2ba459f8"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_zh-CN.exe" "en-US"|"f91096d3662081ea8b2001812b860fadbb5dedd9fd663a071267e3b47d805c92"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_en-US.exe" "it"|"36e2d1def1ed06b6dc28edae9f63c2af2e10f15202ff54899a906d3c44d72750"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_it.exe" "tr"|"00dc973adea44111af822395b34c00a9bfa107346d7f00d9a2a65cdac244a08d"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_tr.exe" "ja"|"b3020b0a72df0d89a975eca2fabf1ff85d151e37393695dcca7bfd84584244f8"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_ja.exe" "ar"|"e8eab93a3f2fb443ad9cd1390dcc06c0ffbacd05e141fa8a5a4c2c1f4b1c97a0"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_ar.exe" "vi"|"cacd6adf49c2820112f8a791e469a1285bfef0762aee6b8b029997bc2782bbe9"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_vi.exe" "de"|"9565b5d340c1d4e10d79acb3088d396522f0c6a4406bf8c009584fc9cbeaa103"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_de.exe" "fr"|"8991de44aab4c1fe54b82e33932e745c04e619dd95c2f30af808f7dc4d8fef69"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_fr.exe" "pt-BR"|"99ab68e72f2949fd63e07c81f81e0121f9876ac4e49d73742e546be3667cdc68"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_pt-BR.exe" "es-ES"|"9b65ea8349d2330d0b7d20f5ff0ca3e2533d57d25f6cbe545635907bb9bcaebb"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_es-ES.exe" "ko"|"2064c03dfa8149a0db3407e7eb64a8c889fa2ad129e1c270fa728578c7550041"|"https://www.torproject.org/dist/torbrowser/7.0.10/torbrowser-install-7.0.10_ko.exe"
Virus Scan Results
- tor-browser.7.0.10.nupkg (13efd2ea2be1) - ## / 61 - Log in or click on link to see number of positives
- torbrowser-install-7.0.10_en-US.exe (f91096d36620) - ## / 53 - Log in or click on link to see number of positives
Dependencies
-
- chocolatey-core.extension (≥ 1.3.3)
Package Maintainer(s)
Software Author(s)
Tags
Release Notes
https://blog.torproject.org/category/tags/tor-browser
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Tor Browser Bundle 8.0.6 | 1073 | Wednesday, February 13, 2019 | approved |
Tor Browser Bundle 8.0.5 | 1976 | Wednesday, January 30, 2019 | approved |
Tor Browser Bundle 8.0.4 | 4092 | Tuesday, December 11, 2018 | approved |
Tor Browser Bundle 8.0.3 | 4551 | Wednesday, October 24, 2018 | approved |
Tor Browser Bundle 8.0.2 | 2452 | Wednesday, October 3, 2018 | approved |
Tor Browser Bundle 8.0.1 | 1389 | Saturday, September 22, 2018 | approved |
Tor Browser Bundle 8.0 | 1865 | Thursday, September 6, 2018 | approved |
Tor Browser Bundle 7.5.6 | 4160 | Tuesday, June 26, 2018 | approved |
Tor Browser Bundle 7.5.5 | 1643 | Saturday, June 9, 2018 | approved |
Tor Browser Bundle 7.5.4 | 2540 | Wednesday, May 9, 2018 | approved |
Discussion for the Tor Browser Bundle Package
Ground rules:
- This discussion is only about Tor Browser Bundle and the Tor Browser Bundle 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 Tor Browser Bundle, 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.