Downloads:
29,696
Downloads of v 2.15.1:
457
Last Update:
29 May 2017
Package Maintainer(s):
Software Author(s):
- Jean-Charles Lefebvre
Tags:
keypirinha freeware admin- Software Specific:
- Software Site
- Software Source
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Keypirinha
This is not the latest version of Keypirinha available.
- 1
- 2
- 3
2.15.1 | Updated: 29 May 2017
- Software Specific:
- Software Site
- Software Source
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
29,696
Downloads of v 2.15.1:
457
Maintainer(s):
Software Author(s):
- Jean-Charles Lefebvre
Keypirinha 2.15.1
This is not the latest version of Keypirinha available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Jean-Charles Lefebvre. The inclusion of Jean-Charles Lefebvre trademark(s), if any, upon this webpage is solely to identify Jean-Charles Lefebvre goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Keypirinha, run the following command from the command line or from PowerShell:
To upgrade Keypirinha, run the following command from the command line or from PowerShell:
To uninstall Keypirinha, 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 keypirinha --internalize --version=2.15.1 --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 keypirinha -y --source="'INTERNAL REPO URL'" --version="'2.15.1'" [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 keypirinha -y --source="'INTERNAL REPO URL'" --version="'2.15.1'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install keypirinha
win_chocolatey:
name: keypirinha
version: '2.15.1'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'keypirinha' do
action :install
source 'INTERNAL REPO URL'
version '2.15.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller keypirinha
{
Name = "keypirinha"
Version = "2.15.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'keypirinha':
ensure => '2.15.1',
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator Pauby on 01 Jun 2017.
Keypirinha is a fast launcher for keyboard ninjas on Windows.
Features:
Quickly find and launch plethora of items like applications, files, bookmarks, URLs, sessions (PuTTY, WinSCP, FileZilla), registry keys, ...
Launch a search on any configured website or online dictionary
Language translations on-the-fly
Evaluate mathematical expressions
Base conversion of numbers
Search your environment variables
Launch a copied URL directly (http, mailto, skype, ...)
Split a URL and convert its arguments to JSON
Switch to a running application by name
Hash a string (CRC32, MD5, SHA, ...)
Generate random UUIDs, passwords, bytes sequences
Naturally associate a keyword to a specific item
Machine-specific and/or user-specific configuration
And more, see Shipped Packages
Properties:
Freeware, no nag screen, no time limit, no ads
Customizable GUI (colors, fonts, toggling and positioning of elements)
Lightning fast
Fairly small memory footprint
Battery friendly
File-driven configuration
Steep but rewarding learning curve
Written in C++, exposes a Python3 API for its plugins
You can think of Keypirinha as an alternative to Launchy and a cousin of Alfred.
Stop-Process -processname keypirinha* -force
$ErrorActionPreference = 'Stop';
$packageName = 'keypirinha'
$softwareName = 'keypirinha*'
$installerType = 'MSI'
$silentArgs = '/qn /norestart'
$validExitCodes = @(0, 3010, 1605, 1614, 1641)
if ($installerType -ne 'MSI') {
$validExitCodes = @(0)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
$key | % {
$file = "$($_.UninstallString)"
if ($installerType -eq 'MSI') {
$silentArgs = "$($_.PSChildName) $silentArgs"
$file = ''
}
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"}
}
Log in or click on link to see number of positives.
- concrt140.dll (f3093cb216bf) - ## / 66
- msvcp140.dll (9c1dc36d3193) - ## / 66
- vccorlib140.dll (f3bcc4a3ae6c) - ## / 71
- vcruntime140.dll (6823b98c3e92) - ## / 68
- api-ms-win-core-file-l1-2-0.dll (3816bbb7dd76) - ## / 61
- api-ms-win-core-file-l2-1-0.dll (096409422ecd) - ## / 67
- api-ms-win-core-localization-l1-2-0.dll (f33e6ac5d3e1) - ## / 68
- api-ms-win-core-processthreads-l1-1-0.dll (02839f3b2bdf) - ## / 67
- api-ms-win-core-processthreads-l1-1-1.dll (bfa24f94ba09) - ## / 68
- api-ms-win-core-synch-l1-1-0.dll (e7d39dcb79d7) - ## / 65
- api-ms-win-core-synch-l1-2-0.dll (01bb32d692b8) - ## / 67
- api-ms-win-core-sysinfo-l1-1-0.dll (fb23439a5982) - ## / 67
- api-ms-win-core-timezone-l1-1-0.dll (d592b91a087c) - ## / 68
- api-ms-win-crt-convert-l1-1-0.dll (e4ccd13d5861) - ## / 66
- api-ms-win-crt-heap-l1-1-0.dll (242cb185643d) - ## / 68
- api-ms-win-crt-runtime-l1-1-0.dll (24bc147f7c8a) - ## / 68
- api-ms-win-crt-stdio-l1-1-0.dll (5a3d9a0a2c1f) - ## / 66
- api-ms-win-crt-string-l1-1-0.dll (d51dfd972e6d) - ## / 67
- api-ms-win-crt-time-l1-1-0.dll (d5e2fb8495bb) - ## / 68
- api-ms-win-crt-utility-l1-1-0.dll (4eca5b9e5be5) - ## / 68
- ucrtbase.dll (dd32570b8183) - ## / 66
- concrt140.dll (511aba3d00b9) - ## / 70
- msvcp140.dll (517cd3aac217) - ## / 66
- vccorlib140.dll (8a442077df17) - ## / 70
- vcruntime140.dll (d89c7b863fc1) - ## / 72
- keypirinha.exe (b650566ea3b5) - ## / 60
- api-ms-win-core-console-l1-1-0.dll (4cf1cc0dd166) - ## / 67
- api-ms-win-core-datetime-l1-1-0.dll (5e9c97c5d37b) - ## / 68
- api-ms-win-core-debug-l1-1-0.dll (adeead709b86) - ## / 63
- api-ms-win-core-errorhandling-l1-1-0.dll (74c45e4a9c05) - ## / 67
- api-ms-win-core-file-l1-1-0.dll (f6ccd74ccea1) - ## / 67
- api-ms-win-core-file-l1-2-0.dll (7f58f49a59c4) - ## / 64
- api-ms-win-core-file-l2-1-0.dll (e1fe386e5b0f) - ## / 67
- api-ms-win-core-handle-l1-1-0.dll (ad2be5da49cb) - ## / 66
- api-ms-win-core-heap-l1-1-0.dll (9f6ada34f789) - ## / 67
- api-ms-win-core-interlocked-l1-1-0.dll (3d7ff518bb79) - ## / 67
- api-ms-win-core-libraryloader-l1-1-0.dll (857b6f69ab5a) - ## / 67
- api-ms-win-core-localization-l1-2-0.dll (8fd1d49ad7a0) - ## / 67
- api-ms-win-core-memory-l1-1-0.dll (db1893e5adaf) - ## / 67
- api-ms-win-core-namedpipe-l1-1-0.dll (ae536d04c9f7) - ## / 65
- api-ms-win-core-processenvironment-l1-1-0.dll (39634e5c748c) - ## / 67
- api-ms-win-core-processthreads-l1-1-0.dll (8e7978163401) - ## / 67
- api-ms-win-core-processthreads-l1-1-1.dll (d20bf4086cd6) - ## / 67
- api-ms-win-core-profile-l1-1-0.dll (62c572488d41) - ## / 68
- api-ms-win-core-rtlsupport-l1-1-0.dll (733829e7aebd) - ## / 63
- api-ms-win-core-string-l1-1-0.dll (e5575f0172da) - ## / 66
- api-ms-win-core-synch-l1-1-0.dll (e3243a262841) - ## / 67
- api-ms-win-core-synch-l1-2-0.dll (68a36ccfb88d) - ## / 67
- api-ms-win-core-sysinfo-l1-1-0.dll (768f92f8f1b2) - ## / 67
- api-ms-win-core-timezone-l1-1-0.dll (03faaac34a7d) - ## / 67
- api-ms-win-core-util-l1-1-0.dll (082f08bfc404) - ## / 68
- api-ms-win-crt-conio-l1-1-0.dll (055cb2699194) - ## / 67
- api-ms-win-crt-convert-l1-1-0.dll (0dd70eb1936c) - ## / 67
- api-ms-win-crt-environment-l1-1-0.dll (dd6b5fbab8e1) - ## / 67
- api-ms-win-crt-filesystem-l1-1-0.dll (3a2c1d0c99a9) - ## / 67
- api-ms-win-crt-heap-l1-1-0.dll (4e07b35c97f7) - ## / 67
- api-ms-win-crt-locale-l1-1-0.dll (9b299b18fe97) - ## / 67
- api-ms-win-crt-math-l1-1-0.dll (177779ff31d2) - ## / 66
- api-ms-win-crt-multibyte-l1-1-0.dll (e4152a6d181f) - ## / 66
- api-ms-win-crt-private-l1-1-0.dll (680fd6211bfa) - ## / 68
- api-ms-win-crt-process-l1-1-0.dll (59752e277397) - ## / 67
- api-ms-win-crt-runtime-l1-1-0.dll (b5a3c4681ff8) - ## / 67
- api-ms-win-crt-stdio-l1-1-0.dll (e3c4e66be42b) - ## / 67
- api-ms-win-crt-string-l1-1-0.dll (0595b77b356f) - ## / 66
- api-ms-win-crt-time-l1-1-0.dll (b724edd5f89b) - ## / 67
- api-ms-win-crt-utility-l1-1-0.dll (a075f5c8dbd9) - ## / 67
- boost_python-vc140-mt-1_63.dll (e4ada8cc2edf) - ## / 61
- keypirinha-x64.exe (a7ac05bd1484) - ## / 61
- python36.dll (0dd52b02bb67) - ## / 62
- ucrtbase.dll (cd48756e9674) - ## / 66
- Notepad2.exe (abb2e53af972) - ## / 66
- sqlite3.dll (6bb332eda256) - ## / 61
- lib.zip (669f9a967366) - ## / 59
- api-ms-win-core-console-l1-1-0.dll (f6bdc8ffd172) - ## / 67
- api-ms-win-core-datetime-l1-1-0.dll (7d588a5a958e) - ## / 68
- api-ms-win-core-debug-l1-1-0.dll (92b947f1d623) - ## / 67
- api-ms-win-core-errorhandling-l1-1-0.dll (e207ffc6fef1) - ## / 67
- api-ms-win-core-file-l1-1-0.dll (c0e5d482bd93) - ## / 68
- api-ms-win-core-handle-l1-1-0.dll (a369ef130749) - ## / 67
- api-ms-win-core-heap-l1-1-0.dll (efc9f0e32bce) - ## / 68
- api-ms-win-core-interlocked-l1-1-0.dll (a272ae4fc60e) - ## / 66
- api-ms-win-core-libraryloader-l1-1-0.dll (0bd03e89a539) - ## / 63
- api-ms-win-core-memory-l1-1-0.dll (8f3f0fd765a3) - ## / 65
- api-ms-win-core-namedpipe-l1-1-0.dll (3a20635a223e) - ## / 68
- api-ms-win-core-processenvironment-l1-1-0.dll (64742ee0729c) - ## / 68
- api-ms-win-core-profile-l1-1-0.dll (48dceeea2955) - ## / 67
- api-ms-win-core-rtlsupport-l1-1-0.dll (41c69b545d93) - ## / 68
- api-ms-win-core-string-l1-1-0.dll (52c9b061c4c7) - ## / 67
- api-ms-win-core-util-l1-1-0.dll (4f31b2888ca8) - ## / 68
- api-ms-win-crt-conio-l1-1-0.dll (905f86530c56) - ## / 67
- api-ms-win-crt-environment-l1-1-0.dll (2cf24c6aac48) - ## / 68
- api-ms-win-crt-filesystem-l1-1-0.dll (fcd8b213e2e9) - ## / 65
- api-ms-win-crt-locale-l1-1-0.dll (81a7a98e11ae) - ## / 68
- api-ms-win-crt-math-l1-1-0.dll (4a88f73cae12) - ## / 68
- api-ms-win-crt-multibyte-l1-1-0.dll (e7238f5e38d3) - ## / 68
- api-ms-win-crt-private-l1-1-0.dll (f8720e9250c5) - ## / 67
- api-ms-win-crt-process-l1-1-0.dll (ecc116471ccf) - ## / 66
- boost_python-vc140-mt-1_63.dll (9bbf8175d456) - ## / 67
- keypirinha-x86.exe (7cfea2e30ed1) - ## / 60
- python36.dll (c8c4eda55995) - ## / 60
- Notepad2.exe (b79a815ca69d) - ## / 58
- sqlite3.dll (35de4c685928) - ## / 62
- keypirinha-2.15.1-x64-portable.7z (d65410442730) - ## / 56
- keypirinha-2.15.1-x86-portable.7z (85f38e8d5e2b) - ## / 57
- keypirinha.2.15.1.nupkg (1892579b1423) - ## / 59
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 |
---|---|---|---|---|
Keypirinha 2.26 | 9825 | Sunday, November 8, 2020 | Approved | |
Keypirinha 2.25 | 2681 | Tuesday, May 26, 2020 | Approved | |
Keypirinha 2.24 | 4009 | Sunday, August 18, 2019 | Approved | |
Keypirinha 2.23 | 3033 | Wednesday, November 14, 2018 | Approved | |
Keypirinha 2.22.1 | 519 | Saturday, November 3, 2018 | Approved | |
Keypirinha 2.22 | 331 | Thursday, November 1, 2018 | Approved | |
Keypirinha 2.21 | 616 | Friday, October 12, 2018 | Approved | |
Keypirinha 2.20 | 343 | Tuesday, October 9, 2018 | Approved | |
Keypirinha 2.19 | 636 | Thursday, September 13, 2018 | Approved | |
Keypirinha 2.18.2 | 2044 | Monday, November 13, 2017 | Approved | |
Keypirinha 2.18.1 | 412 | Sunday, November 12, 2017 | Approved | |
Keypirinha 2.18 | 450 | Wednesday, November 8, 2017 | Approved | |
Keypirinha 2.17 | 447 | Friday, November 3, 2017 | Approved | |
Keypirinha 2.16.3 | 482 | Thursday, October 26, 2017 | Approved | |
Keypirinha 2.16.2 | 447 | Monday, October 23, 2017 | Approved | |
Keypirinha 2.16.1 | 400 | Sunday, October 22, 2017 | Approved | |
Keypirinha 2.16 | 393 | Friday, October 20, 2017 | Approved | |
Keypirinha 2.15.4 | 656 | Sunday, August 27, 2017 | Approved | |
Keypirinha 2.15.3.20170811 | 415 | Friday, August 11, 2017 | Approved | |
Keypirinha 2.15.3 | 503 | Wednesday, July 19, 2017 | Approved | |
Keypirinha 2.15.1.2 | 468 | Monday, June 19, 2017 | Approved | |
Keypirinha 2.15.1 | 457 | Monday, May 29, 2017 | Approved |
v2.15.1 - 2017-05-10
Application
Added the file_explorer setting (issue #62, issue #173)
All orphan items are filtered-out of the search (only history items were)
Search algorithm is slightly more accurate
Fixed: Keypirinha can be launched from a network drive (issue #190)
Fixed: the satellite icon was positioned nearby the top-left corner of the screen in some cases
Docs
WebSuggest Package: referenced @bege10‘s config for German suggestions. Thanks! (issue #189)
Minor corrections in Extending Keypirinha (API)
Minor corrections in Keyboard Shortcuts
Minor corrections in the default Keypirinha.ini file ([theme/Default] section)
This package has no dependencies.
Ground Rules:
- This discussion is only about Keypirinha and the Keypirinha 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 Keypirinha, 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.