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...

Downloads:
4,799,058
Downloads of v 7.3.2:
57,835
Last Update:
14 Feb 2017
Package Maintainer(s):
Software Author(s):
- Don Ho
Tags:
notepad notepadplusplus notepad-plus-plus editor text development foss
Notepad++ (Install)
This is not the latest version of Notepad++ (Install) available.
Downloads:
4,799,058
Downloads of v 7.3.2:
57,835
Maintainer(s):
Software Author(s):
- Don Ho
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.
Notepad++ (Install) 7.3.2
This is not the latest version of Notepad++ (Install) available.
All Checks are Passing
2 Passing Test
To install Notepad++ (Install), run the following command from the command line or from PowerShell:
To upgrade Notepad++ (Install), run the following command from the command line or from PowerShell:
To uninstall Notepad++ (Install), 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://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 notepadplusplus.install --internalize --version=7.3.2 --source=https://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://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade notepadplusplus.install -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 notepadplusplus.install -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 notepadplusplus.install installed
win_chocolatey:
name: notepadplusplus.install
state: present
version: 7.3.2
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'notepadplusplus.install' do
action :install
version '7.3.2'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: notepadplusplus.install,
Version: 7.3.2,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller notepadplusplus.install
{
Name = 'notepadplusplus.install'
Ensure = 'Present'
Version = '7.3.2'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'notepadplusplus.install':
provider => 'chocolatey',
ensure => '7.3.2',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install notepadplusplus.install version="7.3.2" 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...
This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.
- Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
- Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
- Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.
Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.
This package was approved as a trusted package on 14 Feb 2017.
Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL License.
Based on the powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment.
Features
- Syntax Highlighting and Syntax Folding
- User Defined Syntax Highlighting and Folding: screenshot 1, screenshot 2, screenshot 3 and screenshot 4
- PCRE (Perl Compatible Regular Expression) Search/Replace
- GUI entirely customizable: minimalist, tab with close button, multi-line tab, vertical tab and vertical document list
- Document Map
- Auto-completion: Word completion, Function completion and Function parameters hint
- Multi-Document (Tab interface)
- Multi-View
- WYSIWYG (Printing)
- Zoom in and zoom out
- Multi-Language environment supported
- Bookmark
- Macro recording and playback
- Launch with different arguments
$ErrorActionPreference = 'Stop'
$packageName = 'notepadplusplus'
$url32 = 'https://notepad-plus-plus.org/repository/7.x/7.3.2/npp.7.3.2.Installer.exe'
$url64 = 'https://notepad-plus-plus.org/repository/7.x/7.3.2/npp.7.3.2.Installer.x64.exe'
$checksum32 = '9c914b2922ad9fd625cfd507699b2589b9d68104d5f120304961d960cf201a89'
$checksum64 = '94f0b5c9ace8a431ca0be9e754a544d8434de918494ad17dedff28523b6bbcde'
$packageArgs = @{
packageName = $packageName
fileType = 'EXE'
url = $url32
url64bit = $url64
checksum = $checksum32
checksum64 = $checksum64
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/S'
validExitCodes = @(0)
registryUninstallerKey = 'notepad\+\+'
}
Install-ChocolateyPackage @packageArgs
$installLocation = Get-AppInstallLocation $packageArgs.registryUninstallerKey
if ($installLocation) {
Write-Host "$packageName installed to '$installLocation'"
}
else { Write-Warning "Can't find $PackageName install location" }
$ErrorActionPreference = 'Stop'
$packageName = 'notepadplusplus.install'
$softwareNamePattern = 'Notepad++*'
[array] $key = Get-UninstallRegistryKey $softwareNamePattern
if ($key.Count -eq 1) {
$key | % {
$packageArgs = @{
packageName = $packageName
silentArgs = "/x86=0 /S"
fileType = 'EXE'
validExitCodes = @(0)
file = ''
}
$packageArgs.file = "$($_.UninstallString.Replace(' /x86=0', ''))" #"C:\Program Files\OpenSSH\uninstall.exe" /x86=0
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"}
}
- notepadplusplus.install.7.3.2.nupkg (03fbde0775eb) - ## / 58 - Log in or click on link to see number of positives
- npp.7.3.2.Installer.x64.exe (94f0b5c9ace8) - ## / 59 - Log in or click on link to see number of positives
- npp.7.3.2.Installer.exe (9c914b2922ad) - ## / 59 - 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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Notepad++ (Install) 7.8.2 | 0 | Thursday, December 5, 2019 | Approved |
Notepad++ (Install) 7.8.1 | 304563 | Tuesday, October 29, 2019 | Approved |
Notepad++ (Install) 7.8 | 53495 | Saturday, October 26, 2019 | Approved |
Notepad++ (Install) 7.7.1 | 446670 | Thursday, June 20, 2019 | Approved |
Notepad++ (Install) 7.7 | 154329 | Monday, May 20, 2019 | Approved |
Notepad++ (Install) 7.6.6 | 172696 | Thursday, April 4, 2019 | Approved |
Notepad++ (Install) 7.6.4 | 119552 | Wednesday, March 6, 2019 | Approved |
Notepad++ (Install) 7.6.3 | 137421 | Monday, January 28, 2019 | Approved |
Notepad++ (Install) 7.6.2 | 100945 | Tuesday, January 1, 2019 | Approved |
Notepad++ (Install) 7.6.1 | 77248 | Thursday, December 13, 2018 | Approved |
Notepad++ (Install) 7.6 | 121638 | Wednesday, November 14, 2018 | Approved |
Notepad++ (Install) 7.5.9 | 129903 | Monday, October 15, 2018 | Approved |
Notepad++ (Install) 7.5.8 | 281749 | Tuesday, July 24, 2018 | Approved |
Notepad++ (Install) 7.5.7 | 99554 | Saturday, June 30, 2018 | Approved |
Notepad++ (Install) 7.5.6 | 251549 | Monday, March 19, 2018 | Approved |
Notepad++ (Install) 7.5.5 | 79730 | Wednesday, February 28, 2018 | Approved |
Notepad++ (Install) 7.5.4 | 178450 | Monday, January 1, 2018 | Approved |
Notepad++ (Install) 7.5.3 | 95484 | Wednesday, December 6, 2017 | Approved |
Notepad++ (Install) 7.5.2 | 52447 | Tuesday, November 28, 2017 | Approved |
Notepad++ (Install) 7.5.1 | 279293 | Wednesday, August 30, 2017 | Approved |
Notepad++ (Install) 7.5 | 58691 | Wednesday, August 16, 2017 | Approved |
Notepad++ (Install) 7.4.2 | 283855 | Monday, June 19, 2017 | Approved |
Notepad++ (Install) 7.3.3 | 187930 | Thursday, March 9, 2017 | Approved |
Notepad++ (Install) 7.3.2 | 57835 | Tuesday, February 14, 2017 | Approved |
Notepad++ (Install) 7.3.1 | 57912 | Wednesday, January 18, 2017 | Approved |
Notepad++ (Install) 7.3 | 38910 | Monday, January 2, 2017 | Approved |
Notepad++ (Install) 7.2.2 | 66241 | Sunday, November 27, 2016 | Approved |
Notepad++ (Install) 7.2.1 | 22546 | Monday, November 21, 2016 | Approved |
Notepad++ (Install) 7.2 | 45962 | Thursday, November 3, 2016 | Approved |
Notepad++ (Install) 7.1.0.20161029 | 19468 | Saturday, October 29, 2016 | Approved |
Notepad++ (Install) 7.1.0.20161020 | 8173 | Monday, October 24, 2016 | Approved |
Notepad++ (Install) 7.1 | 32488 | Sunday, October 16, 2016 | Approved |
Notepad++ (Install) 7.0 | 23724 | Monday, October 10, 2016 | Approved |
Notepad++ (Install) 6.9.2 | 99038 | Wednesday, May 18, 2016 | Approved |
Notepad++ (Install) 6.9.1 | 36274 | Monday, March 28, 2016 | Approved |
Notepad++ (Install) 6.9 | 42335 | Monday, February 22, 2016 | Approved |
Notepad++ (Install) 6.8.8 | 44617 | Thursday, December 10, 2015 | Approved |
Notepad++ (Install) 6.8.7 | 14198 | Friday, November 27, 2015 | Approved |
Notepad++ (Install) 6.8.6 | 22503 | Thursday, October 29, 2015 | Approved |
Notepad++ (Install) 6.8.5 | 13369 | Sunday, October 18, 2015 | Approved |
Notepad++ (Install) 6.8.4 | 3674 | Friday, October 16, 2015 | Approved |
Notepad++ (Install) 6.8.3 | 40717 | Friday, September 4, 2015 | Approved |
Notepad++ (Install) 6.8.2 | 20684 | Thursday, August 20, 2015 | Approved |
Notepad++ (Install) 6.8.1 | 22016 | Tuesday, August 4, 2015 | Approved |
Notepad++ (Install) 6.8 | 13608 | Tuesday, July 21, 2015 | Approved |
Notepad++ (Install) 6.7.9.2 | 16358 | Wednesday, June 24, 2015 | Approved |
Notepad++ (Install) 6.7.9.1 | 4416 | Sunday, June 21, 2015 | Approved |
Notepad++ (Install) 6.7.9 | 7479 | Friday, June 12, 2015 | Approved |
Notepad++ (Install) 6.7.8.2 | 2119 | Thursday, June 11, 2015 | Approved |
Notepad++ (Install) 6.7.7 | 19906 | Friday, May 1, 2015 | Approved |
Notepad++ (Install) 6.7.5 | 21764 | Friday, March 13, 2015 | Approved |
Notepad++ (Install) 6.7.4 | 24521 | Sunday, January 11, 2015 | Approved |
Notepad++ (Install) 6.7.3 | 5077 | Thursday, January 1, 2015 | Approved |
Notepad++ (Install) 6.7.2 | 2691 | Sunday, December 28, 2014 | Approved |
Notepad++ (Install) 6.7.1 | 2468 | Monday, December 22, 2014 | Approved |
Notepad++ (Install) 6.7 | 4243 | Monday, December 15, 2014 | Approved |
Notepad++ (Install) 6.6.9 | 28576 | Monday, September 8, 2014 | Approved |
Notepad++ (Install) 6.6.8 | 10655 | Monday, July 28, 2014 | Approved |
Notepad++ (Install) 6.6.7 | 7838 | Wednesday, June 25, 2014 | Approved |
Notepad++ (Install) 6.6.6 | 4449 | Friday, June 13, 2014 | Approved |
Notepad++ (Install) 6.6.4 | 3241 | Thursday, June 5, 2014 | Approved |
Notepad++ (Install) 6.6.3 | 4859 | Monday, May 19, 2014 | Approved |
Notepad++ (Install) 6.6.2 | 4503 | Friday, May 9, 2014 | Approved |
Notepad++ (Install) 6.6.1 | 2368 | Monday, May 5, 2014 | Approved |
Notepad++ (Install) 6.6 | 2236 | Friday, May 2, 2014 | Approved |
Notepad++ (Install) 6.5.5 | 10268 | Friday, March 7, 2014 | Approved |
Notepad++ (Install) 6.5.4 | 3500 | Wednesday, February 19, 2014 | Approved |
Notepad++ (Install) 6.5.3 | 6884 | Wednesday, January 1, 2014 | Approved |
Notepad++ (Install) 6.5.2 | 2772 | Wednesday, December 11, 2013 | Approved |
Notepad++ (Install) 6.5.1 | 3885 | Monday, November 4, 2013 | Approved |
Notepad++ (Install) 6.5 | 3358 | Sunday, September 29, 2013 | Approved |
Notepad++ (Install) 6.4.5 | 3979 | Saturday, August 10, 2013 | Approved |
Notepad++ (Install) 6.4.4 | 638 | Friday, August 9, 2013 | Approved |
Notepad++ (Install) 6.4.3 | 1382 | Monday, July 29, 2013 | Approved |
Notepad++ (Install) 6.4.2 | 1721 | Tuesday, July 9, 2013 | Approved |
Notepad++ (Install) 6.4.1 | 1204 | Sunday, June 30, 2013 | Approved |
Notepad++ (Install) 6.3.3 | 3713 | Monday, May 6, 2013 | Approved |
Notepad++ (Install) 6.3.2 | 2005 | Wednesday, April 3, 2013 | Approved |
Notepad++ (Install) 6.3.1 | 1231 | Monday, March 18, 2013 | Approved |
Notepad++ (Install) 6.3 | 2284 | Monday, February 4, 2013 | Approved |
Notepad++ (Install) 6.2.3 | 1593 | Monday, December 17, 2012 | Approved |
Notepad++ (Install) 6.2.2 | 1133 | Monday, November 19, 2012 | Approved |
Notepad++ (Install) 6.2.1 | 687 | Monday, November 12, 2012 | Approved |
Notepad++ (Install) 6.2 | 1295 | Wednesday, October 10, 2012 | Approved |
Notepad++ (Install) 6.1.8 | 1398 | Monday, September 17, 2012 | Approved |
Notepad++ (Install) 6.1.7 | 827 | Tuesday, September 11, 2012 | Approved |
Notepad++ (Install) 6.1.6 | 888 | Thursday, August 16, 2012 | Approved |
Notepad++ (Install) 6.1.5 | 828 | Sunday, July 8, 2012 | Approved |
Notepad++ (Install) 6.1.4 | 567 | Monday, June 25, 2012 | Approved |
Notepad++ (Install) 6.1.3 | 697 | Monday, May 28, 2012 | Approved |
Notepad++ (Install) 6.1.2 | 526 | Thursday, May 24, 2012 | Approved |
Notepad++ (Install) 6.1.0 | 752 | Wednesday, April 11, 2012 | Approved |
Notepad++ (Install) 5.9.8 | 672 | Saturday, February 25, 2012 | Approved |
-
- chocolatey-core.extension (≥ 1.0.3)
Ground Rules:
- This discussion is only about Notepad++ (Install) and the Notepad++ (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 Notepad++ (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.