Downloads:
21,999
Downloads of v 8.23.2.20230313:
876
Last Update:
13 Mar 2023
Package Maintainer(s):
Software Author(s):
- Oliver Schwendener
Tags:
ueli keystroke launcher- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
ueli (Install)
This is not the latest version of ueli (Install) available.
- 1
- 2
- 3
8.23.2.20230313 | Updated: 13 Mar 2023
- Software Specific:
- Software Site
- Software Source
- 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:
21,999
Downloads of v 8.23.2.20230313:
876
Maintainer(s):
Software Author(s):
- Oliver Schwendener
ueli (Install) 8.23.2.20230313
This is not the latest version of ueli (Install) available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Oliver Schwendener. The inclusion of Oliver Schwendener trademark(s), if any, upon this webpage is solely to identify Oliver Schwendener goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install ueli (Install), run the following command from the command line or from PowerShell:
To upgrade ueli (Install), run the following command from the command line or from PowerShell:
To uninstall ueli (Install), 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 ueli --internalize --version=8.23.2.20230313 --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 ueli -y --source="'INTERNAL REPO URL'" --version="'8.23.2.20230313'" [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 ueli -y --source="'INTERNAL REPO URL'" --version="'8.23.2.20230313'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install ueli
win_chocolatey:
name: ueli
version: '8.23.2.20230313'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'ueli' do
action :install
source 'INTERNAL REPO URL'
version '8.23.2.20230313'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller ueli
{
Name = "ueli"
Version = "8.23.2.20230313"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'ueli':
ensure => '8.23.2.20230313',
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 as a trusted package on 13 Mar 2023.
This is a keystroke launcher for Windows and macOS.
$ErrorActionPreference = 'Stop';
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'ueli*'
fileType = 'exe'
silentArgs = '/S'
validExitCodes= @(0)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
if ($packageArgs['fileType'] -eq 'MSI') {
$packageArgs['silentArgs'] = "$($_.PSChildName) $($packageArgs['silentArgs'])"
$packageArgs['file'] = ''
}
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)"}
}
Log in or click on link to see number of positives.
- ueli.8.23.2.20230313.nupkg (b94661e5ccef) - ## / 63
- ueli-Setup-8.23.2.exe (cdbf285f32a0) - ## / 65
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 |
---|---|---|---|---|
ueli (Install) 8.28.0 | 657 | Monday, March 11, 2024 | Approved | |
ueli (Install) 8.24.0 | 764 | Sunday, September 10, 2023 | Approved | |
ueli (Install) 8.23.2.20230313 | 876 | Monday, March 13, 2023 | Approved | |
ueli (Install) 8.23.1 | 1100 | Sunday, October 30, 2022 | Approved | |
ueli (Install) 8.22.0 | 733 | Sunday, June 19, 2022 | Approved | |
ueli (Install) 8.19.0 | 791 | Friday, February 11, 2022 | Approved | |
ueli (Install) 8.18.1 | 492 | Wednesday, January 5, 2022 | Approved | |
ueli (Install) 8.12.0 | 1275 | Friday, May 28, 2021 | Approved | |
ueli (Install) 8.11.0 | 801 | Sunday, February 28, 2021 | Approved | |
ueli (Install) 8.10.0 | 1006 | Sunday, October 25, 2020 | Approved | |
ueli (Install) 8.9.0 | 385 | Wednesday, September 30, 2020 | Approved | |
ueli (Install) 8.8.1 | 485 | Saturday, August 15, 2020 | Approved | |
ueli (Install) 8.8.0 | 493 | Tuesday, July 7, 2020 | Approved | |
ueli (Install) 8.7.1 | 440 | Sunday, June 14, 2020 | Approved | |
ueli (Install) 8.7.0 | 525 | Thursday, May 14, 2020 | Approved | |
ueli (Install) 8.6.2 | 728 | Sunday, March 22, 2020 | Approved | |
ueli (Install) 8.6.1 | 244 | Thursday, March 19, 2020 | Approved | |
ueli (Install) 8.5.3 | 360 | Saturday, March 7, 2020 | Approved | |
ueli (Install) 8.5.2 | 408 | Sunday, February 16, 2020 | Approved | |
ueli (Install) 8.5.1 | 262 | Tuesday, February 11, 2020 | Approved | |
ueli (Install) 8.5.0 | 456 | Saturday, January 4, 2020 | Approved | |
ueli (Install) 8.4.2 | 243 | Tuesday, December 31, 2019 | Approved | |
ueli (Install) 8.4.1 | 368 | Sunday, December 8, 2019 | Approved | |
ueli (Install) 8.3.0 | 365 | Friday, November 22, 2019 | Approved | |
ueli (Install) 8.2.0 | 458 | Saturday, October 19, 2019 | Approved | |
ueli (Install) 8.1.3 | 367 | Friday, September 27, 2019 | Approved | |
ueli (Install) 8.1.2 | 310 | Tuesday, September 17, 2019 | Approved | |
ueli (Install) 8.1.1 | 282 | Wednesday, September 4, 2019 | Approved | |
ueli (Install) 8.1.0 | 302 | Wednesday, August 21, 2019 | Approved | |
ueli (Install) 8.0.1 | 289 | Thursday, August 15, 2019 | Approved | |
ueli (Install) 7.2.8 | 350 | Thursday, July 18, 2019 | Approved | |
ueli (Install) 7.2.7 | 312 | Sunday, June 30, 2019 | Approved | |
ueli (Install) 7.2.6.1 | 317 | Monday, June 3, 2019 | Approved | |
ueli (Install) 7.2.6 | 193 | Monday, June 3, 2019 | Approved | |
ueli (Install) 7.2.5 | 634 | Friday, February 8, 2019 | Approved | |
ueli (Install) 7.2.4 | 279 | Thursday, February 7, 2019 | Approved | |
ueli (Install) 7.2.3 | 291 | Friday, February 1, 2019 | Approved | |
ueli (Install) 7.2.2 | 253 | Monday, January 28, 2019 | Approved | |
ueli (Install) 7.2.1 | 314 | Saturday, January 12, 2019 | Approved | |
ueli (Install) 7.2.0 | 333 | Sunday, December 23, 2018 | Approved | |
ueli (Install) 7.1.0 | 245 | Monday, December 17, 2018 | Approved | |
ueli (Install) 7.0.0 | 284 | Friday, November 30, 2018 | Approved | |
ueli (Install) 6.1.4 | 293 | Tuesday, November 13, 2018 | Approved | |
ueli (Install) 6.1.3 | 254 | Friday, November 9, 2018 | Approved | |
ueli (Install) 6.1.2 | 284 | Sunday, October 14, 2018 | Approved | |
ueli (Install) 6.1.0 | 242 | Saturday, October 6, 2018 | Approved | |
ueli (Install) 6.0.0 | 245 | Sunday, September 16, 2018 | Approved | |
ueli (Install) 5.1.0 | 281 | Tuesday, August 28, 2018 | Approved | |
ueli (Install) 5.0.0 | 271 | Thursday, August 2, 2018 | Approved |
-
- chocolatey-core.extension (≥ 1.3.5.1)
Ground Rules:
- This discussion is only about ueli (Install) and the ueli (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 ueli (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.