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:
14,138
Downloads of v 4.9.5:
3,707
Last Update:
10 Jul 2020
Package Maintainer(s):
Software Author(s):
- Simnet Limited
Tags:
simple sticky notes postit post-it stickies binary- 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

Simple Sticky Notes (Install)
- 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:
14,138
Downloads of v 4.9.5:
3,707
Maintainer(s):
Software Author(s):
- Simnet Limited
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.
All Checks are Passing
2 Passing Test
To install Simple Sticky Notes (Install), run the following command from the command line or from PowerShell:
To upgrade Simple Sticky Notes (Install), run the following command from the command line or from PowerShell:
To uninstall Simple Sticky Notes (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 simple-sticky-notes --internalize --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 simple-sticky-notes -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 simple-sticky-notes -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 simple-sticky-notes installed
win_chocolatey:
name: simple-sticky-notes
state: present
version: 4.9.5
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 'simple-sticky-notes' do
action :install
version '4.9.5'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: simple-sticky-notes,
Version: 4.9.5,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller simple-sticky-notes
{
Name = 'simple-sticky-notes'
Ensure = 'Present'
Version = '4.9.5'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'simple-sticky-notes':
provider => 'chocolatey',
ensure => '4.9.5',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install simple-sticky-notes version="4.9.5" 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.
This package was approved as a trusted package on 10 Jul 2020.
choco://simple-sticky-notes
To use choco:// protocol URLs, install (unofficial) choco:// Protocol support
What is Simple Sticky Notes? It's a simple, easy-to-use, absolutely free, fast and efficient note taking software.
Minimum Requirements: Windows® 10 / 8.1 / 8 / 7 / Vista / XP PC with a 1 GHz Intel or AMD processor and 512 MB of RAM
SOCIAL MEDIA:
Facebook | Google+ | Twitter
Click here to Patreon-ize the package maintainer.
$ErrorActionPreference = 'Stop'
$packageName = 'simple-sticky-notes'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = "$toolsDir\Setup_SimpleStickyNotes.exe"
$packageArgs = @{
packageName = $packageName
fileType = 'EXE'
file = $url
validExitCodes = @(0,1)
silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
softwareName = 'Simple Sticky Notes*'
}
Install-ChocolateyInstallPackage @packageArgs
Remove-Item $toolsDir\*.exe -Force | Out-Null
Remove-Item $toolsDir\*.ignore -Force | Out-Null
========================= Simple Sticky Notes =========================
https://www.simplestickynotes.com/eula/
SIMNET SIMPLE STICKY NOTES FREEWARE LICENSE AGREEMENT
IMPORTANT-READ CAREFULLY: This End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and SIMNET . SOFTWARE(s) identified above, which includes the User's Guide, any associated SOFTWARE components, any media, any printed materials other than the User's Guide, and any "online" or electronic documentation ("SOFTWARE"). By installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE.
1. FREEWARE
You may use the SOFTWARE without charge. We may place announcement of other products into SOFTWARE. SIMNET will not monitor the content of your use (e.g., sites selected or files used).
2. DISTRIBUTION OF SOFTWARE
You may make copies of the SOFTWARE as you wish; give exact copies of the original SOFTWARE to anyone; and distribute the SOFTWARE in its unmodified form via electronic means. You may not charge any fees for the copy or use of the SOFTWARE itself. You must not represent in any way that you are selling the SOFTWARE itself. Your distribution of the SOFTWARE will not entitle you to any compensation from SIMNET. You must distribute a copy of this EULA with any copy of the SOFTWARE and anyone to whom you distribute the SOFTWARE is subject to this EULA.
3. RESTRICTIONS
3.1 You may not reverse engineer, de-compile, or disassemble the SOFTWARE.
3.2 You may not rent, lease, or lend the SOFTWARE.
3.3 You may permanently transfer all of your rights under this EULA, provided the recipient agrees to the terms of this EULA.
3.4 You may not use the SOFTWARE to perform any unauthorized transfer of information or for any illegal purpose.
4. NO WARRANTIES
SIMNET expressly disclaims any warranty for the SOFTWARE. THE SOFTWARE AND ANY RELATED DOCUMENTATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OR MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE REMAINS WITH YOU.
Copyright © 2019 Simnet Ltd. All rights reserved.
Web: https://www.simplestickynotes.com
E-Mail: [email protected]
========================= Simple Sticky Notes =========================
Licensed displayed by the installer:
SIMNET SIMPLE STICKY NOTES FREEWARE LICENSE AGREEMENT
IMPORTANT-READ CAREFULLY: This End-User License Agreement ("EULA") is a legal agreement between you (either an individual or a single entity) and SIMNET . SOFTWARE(s) identified above, which includes the User's Guide, any associated SOFTWARE components, any media, any printed materials other than the User's Guide, and any "online" or electronic documentation ("SOFTWARE"). By installing, copying, or otherwise using the SOFTWARE, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, do not install or use the SOFTWARE.
1. FREEWARE
You may use the SOFTWARE without charge. We may place announcement of other products into SOFTWARE. SIMNET will not monitor the content of your use (e.g., sites selected or files used).
2. DISTRIBUTION OF SOFTWARE.
You may make copies of the SOFTWARE as you wish; give exact copies of the original SOFTWARE to anyone; and distribute the SOFTWARE in its unmodified form via electronic means. You may not charge any fees for the copy or use of the SOFTWARE itself. You must not represent in any way that you are selling the SOFTWARE itself. Your distribution of the SOFTWARE will not entitle you to any compensation from SIMNET. You must distribute a copy of this EULA with any copy of the SOFTWARE and anyone to whom you distribute the SOFTWARE is subject to this EULA.
3. RESTRICTIONS
3.1 You may not reverse engineer, de-compile, or disassemble the SOFTWARE.
3.2 You may not rent, lease, or lend the SOFTWARE.
3.3 You may permanently transfer all of your rights under this EULA, provided the recipient agrees to the terms of this EULA.
3.4 You may not use the SOFTWARE to perform any unauthorized transfer of information or for any illegal purpose.
4. NO WARRANTIES
SIMNET expressly disclaims any warranty for the SOFTWARE. THE SOFTWARE AND ANY RELATED DOCUMENTATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OR MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. THE ENTIRE RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE REMAINS WITH YOU.
Copyright (C) 2019 Simnet Ltd. All rights reserved.
Web: https://www.simplestickynotes.com
E-Mail: [email protected]
========================= Simple Sticky Notes =========================
md5: D83793D1FD85A6B4FB9A505F340C8ADB | sha1: AEBC7917D7D6479616903102DAD9E7DA30C211F6 | sha256: F663B123847C6F123F29C5685CCAD69C9B4E6E346A9EDFC57BEDF502B5576A2E | sha512: B1A1B8565A36C282BCB550D10BB310B47D7EF0E5E45DC9F555CB96DC0E8F8771A467B64590800AD0508D7A30EF806720A0F7B838BB5154F59308B440D38ACE80
========================= Simple Sticky Notes =========================
bcurran3 downloads and packages the executable for Simple Sticky Notes from the developer's site at: https://www.simplestickynotes.com/setup/Setup_SimpleStickyNotes.exe
========================= Simple Sticky Notes =========================
Log in or click on link to see number of positives.
- simple-sticky-notes.4.9.5.nupkg (dd91d38d827b) - ## / 64
- Setup_SimpleStickyNotes.exe (f663b123847c) - ## / 73
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 |
---|---|---|---|
Simple Sticky Notes (Install) 4.9.5 | 3707 | Friday, July 10, 2020 | Approved |
Simple Sticky Notes (Install) 4.9 | 2514 | Thursday, April 2, 2020 | Approved |
Simple Sticky Notes (Install) 4.8 | 1762 | Tuesday, November 26, 2019 | Approved |
Simple Sticky Notes (Install) 4.7 | 1248 | Monday, August 19, 2019 | Approved |
Simple Sticky Notes (Install) 4.6 | 998 | Saturday, June 15, 2019 | Approved |
Simple Sticky Notes (Install) 4.5 | 812 | Wednesday, March 6, 2019 | Approved |
Simple Sticky Notes (Install) 4.4 | 1535 | Wednesday, January 2, 2019 | Approved |
Simple Sticky Notes (Install) 4.3 | 479 | Friday, July 6, 2018 | Approved |
Simple Sticky Notes (Install) 4.2 | 222 | Sunday, May 20, 2018 | Approved |
Simple Sticky Notes (Install) 4.1.1 | 279 | Sunday, April 1, 2018 | Approved |
Simple Sticky Notes (Install) 4.1 | 297 | Thursday, January 25, 2018 | Approved |
Simple Sticky Notes (Install) 4.0 | 285 | Friday, December 1, 2017 | Approved |
Simnet Limited
This package has no dependencies.
Ground Rules:
- This discussion is only about Simple Sticky Notes (Install) and the Simple Sticky Notes (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 Simple Sticky Notes (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.