Downloads:
265
Downloads of v 2020.12.30:
265
Last Update:
03 Jan 2021
Package Maintainer(s):
Software Author(s):
- Tantalus
Tags:
hotkeys- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
NoCtrlZ (Portable)
- 1
- 2
- 3
2020.12.30 | Updated: 03 Jan 2021
- Software Specific:
- Software Site
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
265
Downloads of v 2020.12.30:
265
Maintainer(s):
Software Author(s):
- Tantalus
Tags:
hotkeysNoCtrlZ (Portable) 2020.12.30
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Tantalus. The inclusion of Tantalus trademark(s), if any, upon this webpage is solely to identify Tantalus 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 NoCtrlZ (Portable), run the following command from the command line or from PowerShell:
To upgrade NoCtrlZ (Portable), run the following command from the command line or from PowerShell:
To uninstall NoCtrlZ (Portable), 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 noctrlz.portable --internalize --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 noctrlz.portable -y --source="'INTERNAL REPO 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 noctrlz.portable -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install noctrlz.portable
win_chocolatey:
name: noctrlz.portable
version: '2020.12.30'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'noctrlz.portable' do
action :install
source 'INTERNAL REPO URL'
version '2020.12.30'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller noctrlz.portable
{
Name = "noctrlz.portable"
Version = "2020.12.30"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'noctrlz.portable':
ensure => '2020.12.30',
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.
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 by moderator gep13 on 04 Jan 2021.
Taken from this post, to make it into a package. Can be seen as a shorter implementation of dweundo (and better, with a tray icon!), based on AutoHotKey.
The executable will be started after installation, and a startup task is automatically added.
# This runs in 0.9.10+ before upgrade and uninstall.
# Use this file to do things like stop services prior to upgrade or uninstall.
# NOTE: It is an anti-pattern to call chocolateyUninstall.ps1 from here. If you
# need to uninstall an MSI prior to upgrade, put the functionality in this
# file without calling the uninstall script. Make it idempotent in the
# uninstall script so that it doesn't fail when it is already uninstalled.
# NOTE: For upgrades - like the uninstall script, this script always runs from
# the currently installed version, not from the new upgraded package version.
Write-Host "Stopping running tasks..."
$proc = Get-Process NoCtrlZ -ea ignore
if ($proc) {
Stop-Process $proc
}
$proc = Get-Process NoCtrlZ-32 -ea ignore
if ($proc) {
Stop-Process $proc
}
$ErrorActionPreference = 'Stop';
$shortcutPath = "$env:APPDATA\Microsoft\Windows\Start Menu\Programs\Startup\NoCtrlZ.lnk"
Remove-Item $shortcutPath -ea ignore
From: https://github.com/Tantalus13A98B5F/NoCtrlZ/blob/main/LICENSE.txt
MIT License
Copyright (c) 2020 Tantalus
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
md5: A8D0F6377C5B6C471C9283D7407B2AB6 | sha1: 4F53CE857D1D56BF49038CD0041022205AF16DA2 | sha256: 841EB973443F65EBE432A2AD3ADE2003ED33DE21F7011FE5E50A7996DE5B46EB | sha512: F8BCB74A872BBF9EC185501E0C8C5F3644BB31F48BF3DB159B77CBF2197E7FFECCF9D43A6CB90848235FE9188321B69A827294A0420BBF8A078EF1269867E1EA
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Checksum for the following embedded file(s) can be verified by `Get-FileHash` in PowerShell.
File: tools/NoCtrlZ-Binaries.zip
URL: https://github.com/Tantalus13A98B5F/NoCtrlZ/releases/download/2020-12-30/NoCtrlZ-Binaries.zip
SHA256: 841EB973443F65EBE432A2AD3ADE2003ED33DE21F7011FE5E50A7996DE5B46EB
Log in or click on link to see number of positives.
- noctrlz.portable.2020.12.30.nupkg (3efefa339a45) - ## / 64
- NoCtrlZ-Binaries.zip (841eb973443f) - ## / 65
- NoCtrlZ-32.exe (30e9915d73fb) - ## / 70
- NoCtrlZ.exe (27a7f2b388d2) - ## / 70
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.
-
- chocolatey-core.extension (≥ 1.1.0)
Ground Rules:
- This discussion is only about NoCtrlZ (Portable) and the NoCtrlZ (Portable) 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 NoCtrlZ (Portable), 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.