Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
10,801
Downloads of v 0.9.1:
118
Last Update:
13 Mar 2020
Package Maintainer(s):
Software Author(s):
- Fndroid
Tags:
clash v2ray shadowsocks http-proxy socks-proxy- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Clash for Windows
This is not the latest version of Clash for Windows available.
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
10,801
Downloads of v 0.9.1:
118
Software Author(s):
- Fndroid
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Clash for Windows 0.9.1
This is not the latest version of Clash for Windows available.
All Checks are Passing
2 Passing Test
To install Clash for Windows, run the following command from the command line or from PowerShell:
To upgrade Clash for Windows, run the following command from the command line or from PowerShell:
To uninstall Clash for Windows, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
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
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download clash-for-windows --internalize --version=0.9.1 --source=https://community.chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade clash-for-windows -y --source="'STEP 3 URL'" [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 clash-for-windows -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure clash-for-windows installed
win_chocolatey:
name: clash-for-windows
state: present
version: 0.9.1
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'clash-for-windows' do
action :install
version '0.9.1'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: clash-for-windows,
Version: 0.9.1,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller clash-for-windows
{
Name = 'clash-for-windows'
Ensure = 'Present'
Version = '0.9.1'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'clash-for-windows':
provider => 'chocolatey',
ensure => '0.9.1',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install clash-for-windows version="0.9.1" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
There are versions of this package awaiting moderation . See the Version History section below.
This package was approved as a trusted package on 13 Mar 2020.
Clash
A rule-based tunnel in Go.
Clash for Windows
A Windows GUI based on Clash
Get-Process "Clash for Windows" -ErrorAction SilentlyContinue | Stop-Process -Force -ErrorAction SilentlyContinue
$ErrorActionPreference = 'Stop';
$url = 'https://github.com/Fndroid/clash_for_windows_pkg/releases/download/0.9.1/Clash.for.Windows.Setup.0.9.1.exe'
$checksum = 'de432c28b01b2af401627899490eb26f846d9c10906f70e864da35f94084d850'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
url = $url
softwareName = 'Clash for Windows*'
checksum = $checksum
checksumType = 'sha256'
silentArgs = '/S'
}
Install-ChocolateyPackage @packageArgs
$ErrorActionPreference = 'Stop';
$packageName = $env:ChocolateyPackageName
$softwareName = 'Clash for Windows*'
$fileType = 'exe'
$uninstallArgs = '/currentuser /S'
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
$file = $key[0].QuietUninstallString.Split('/')[0]
Uninstall-ChocolateyPackage $packageName $fileType $uninstallArgs $file
}
Log in or click on link to see number of positives.
- clash-for-windows.0.9.1.nupkg (58c230567354) - ## / 63
- Clash.for.Windows.Setup.0.9.1.exe (de432c28b01b) - ## / 69
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Clash for Windows 0.15.3 | 56 | Friday, April 16, 2021 | Approved |
Clash for Windows 0.15.2 | 170 | Friday, April 9, 2021 | Approved |
Clash for Windows 0.15.1 | 169 | Sunday, March 28, 2021 | Approved |
Clash for Windows 0.15.0 | 19 | Friday, March 26, 2021 | Approved |
Clash for Windows 0.14.10 | 335 | Saturday, March 20, 2021 | Approved |
Clash for Windows 0.14.9 | 250 | Monday, March 15, 2021 | Approved |
Clash for Windows 0.14.8 | 284 | Friday, March 5, 2021 | Approved |
Clash for Windows 0.14.7 | 229 | Friday, February 26, 2021 | Approved |
Clash for Windows 0.14.6 | 14 | Friday, February 19, 2021 |
Waiting for Maintainer
|
Clash for Windows 0.14.4 | 382 | Friday, February 5, 2021 | Approved |
Clash for Windows 0.14.3 | 180 | Saturday, January 30, 2021 | Approved |
Clash for Windows 0.14.2 | 97 | Friday, January 29, 2021 | Approved |
Clash for Windows 0.14.1 | 26 | Friday, January 8, 2021 | Approved |
Clash for Windows 0.14.0 | 454 | Friday, January 8, 2021 | Approved |
Clash for Windows 0.13.8 | 355 | Friday, December 25, 2020 | Approved |
Clash for Windows 0.13.7 | 191 | Friday, December 18, 2020 | Approved |
Clash for Windows 0.13.6 | 326 | Friday, December 4, 2020 | Approved |
Clash for Windows 0.13.5 | 242 | Friday, November 27, 2020 | Approved |
Clash for Windows 0.13.4 | 200 | Friday, November 20, 2020 | Approved |
Clash for Windows 0.13.3 | 183 | Friday, November 13, 2020 | Approved |
Clash for Windows 0.13.2 | 276 | Friday, November 6, 2020 | Approved |
Clash for Windows 0.13.1 | 289 | Friday, October 30, 2020 | Approved |
Clash for Windows 0.13.0 | 225 | Friday, October 23, 2020 | Approved |
Clash for Windows 0.12.1 | 314 | Friday, October 9, 2020 | Approved |
Clash for Windows 0.12.0 | 212 | Wednesday, September 30, 2020 | Approved |
Clash for Windows 0.11.10 | 132 | Friday, September 25, 2020 | Approved |
Clash for Windows 0.11.9 | 168 | Friday, September 18, 2020 | Approved |
Clash for Windows 0.11.8 | 277 | Friday, September 11, 2020 | Approved |
Clash for Windows 0.11.7 | 231 | Saturday, September 5, 2020 | Approved |
Clash for Windows 0.11.6 | 235 | Friday, August 28, 2020 | Approved |
Clash for Windows 0.11.5 | 218 | Friday, August 21, 2020 | Approved |
Clash for Windows 0.11.4 | 220 | Friday, August 14, 2020 | Approved |
Clash for Windows 0.11.3 | 247 | Saturday, August 1, 2020 | Approved |
Clash for Windows 0.11.2 | 169 | Friday, July 24, 2020 | Approved |
Clash for Windows 0.11.1 | 133 | Friday, July 17, 2020 | Approved |
Clash for Windows 0.11.0 | 143 | Friday, July 10, 2020 | Approved |
Clash for Windows 0.10.4 | 250 | Friday, June 26, 2020 | Approved |
Clash for Windows 0.10.3 | 114 | Friday, June 19, 2020 | Approved |
Clash for Windows 0.10.2 | 55 | Friday, June 19, 2020 | Approved |
Clash for Windows 0.10.1 | 170 | Friday, June 5, 2020 | Approved |
Clash for Windows 0.9.11 | 223 | Friday, May 15, 2020 | Approved |
Clash for Windows 0.9.10 | 107 | Friday, May 8, 2020 | Approved |
Clash for Windows 0.9.9 | 147 | Thursday, April 30, 2020 | Approved |
Clash for Windows 0.9.8 | 104 | Saturday, April 25, 2020 | Approved |
Clash for Windows 0.9.7 | 99 | Friday, April 24, 2020 | Approved |
Clash for Windows 0.9.6 | 124 | Friday, April 17, 2020 | Approved |
Clash for Windows 0.9.5 | 115 | Friday, April 10, 2020 | Approved |
Clash for Windows 0.9.4 | 124 | Friday, April 3, 2020 | Approved |
Clash for Windows 0.9.3 | 101 | Saturday, March 28, 2020 | Approved |
Clash for Windows 0.9.2 | 131 | Friday, March 20, 2020 | Approved |
Clash for Windows 0.9.1 | 118 | Friday, March 13, 2020 | Approved |
Clash for Windows 0.9.0 | 154 | Friday, February 28, 2020 | Approved |
Clash for Windows 0.8.11 | 204 | Sunday, February 9, 2020 | Approved |
Clash for Windows 0.8.10 | 104 | Thursday, January 23, 2020 | Approved |
Clash for Windows 0.8.9 | 91 | Sunday, January 12, 2020 | Approved |
Clash for Windows 0.8.8 | 137 | Tuesday, December 31, 2019 | Approved |
Clash for Windows 0.8.7 | 65 | Saturday, December 28, 2019 | Approved |
Clash for Windows 0.8.6 | 53 | Friday, December 13, 2019 | Approved |
Clash for Windows 0.8.5 | 38 | Saturday, December 7, 2019 | Approved |
Clash for Windows 0.8.4 | 48 | Saturday, December 7, 2019 | Approved |
Clash for Windows 0.8.3 | 46 | Friday, December 13, 2019 | Approved |
Clash for Windows 0.8.2 | 56 | Friday, December 13, 2019 | Approved |
Clash for Windows 0.8.1 | 69 | Friday, December 13, 2019 | Approved |
Clash for Windows 0.8.0 | 91 | Wednesday, November 6, 2019 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Clash for Windows and the Clash for Windows 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 Clash for Windows, 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.