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:
9,470
Downloads of v 2.7.5:
109
Last Update:
14 Apr 2019
Package Maintainer(s):
Software Author(s):
- SASAKI Nobuyuki
Tags:
Japanese Input IME SKK admin- 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

CorvusSKK
This is not the latest version of CorvusSKK available.
- 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:
9,470
Downloads of v 2.7.5:
109
Maintainer(s):
Software Author(s):
- SASAKI Nobuyuki
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.
CorvusSKK 2.7.5
This is not the latest version of CorvusSKK available.
All Checks are Passing
2 Passing Test
To install CorvusSKK, run the following command from the command line or from PowerShell:
To upgrade CorvusSKK, run the following command from the command line or from PowerShell:
To uninstall CorvusSKK, 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 corvusskk --internalize --version=2.7.5 --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 corvusskk -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 corvusskk -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 corvusskk installed
win_chocolatey:
name: corvusskk
state: present
version: 2.7.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 'corvusskk' do
action :install
version '2.7.5'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: corvusskk,
Version: 2.7.5,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller corvusskk
{
Name = 'corvusskk'
Ensure = 'Present'
Version = '2.7.5'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'corvusskk':
provider => 'chocolatey',
ensure => '2.7.5',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install corvusskk version="2.7.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 14 Apr 2019.
SKK-like Japanese Input Method Editor
Supported OS
- Windows Vista SP2 (with KB971644 or KB971512)
- Windows 7 SP1
- Windows 8
- Windows 8.1 (with KB2919355)
- Windows 10
$packageName = 'CorvusSKK'
$installerType = 'exe'
$url = 'https://github.com/nathancorvussolis/corvusskk/releases/download/2.7.5/corvusskk-2.7.5.exe'
$checksum = 'E0CFF0D8D3C8C27300E0FA32026685DE836A816B7135E93084BE65751F2EE769'
$checksumType = 'sha256'
$silentArgs = '/quiet /norestart'
$validExitCodes= @(0, 3010)
$osVersion = [version](Get-WmiObject Win32_OperatingSystem).Version
if(($osVersion -eq [version]"6.0.6000") -or ($osVersion -eq [version]"6.0.6001")) {
Write-Warning "$packageName requires Service Pack 2 on Windows Vista / Server 2008."
return
}
if($osVersion -eq [version]"6.0.6002") {
$hotfix971512 = Get-HotFix | where hotfixID -eq KB971512
$hotfix971644 = Get-HotFix | where hotfixID -eq KB971644
if(($hotfix971512 -eq $null) -and ($hotfix971644 -eq $null)) {
Write-Warning "$packageName requires KB971512 or KB971644 on Windows Vista / Server 2008."
return
}
}
if($osVersion -eq [version]"6.1.7600") {
Write-Warning "$packageName requires Service Pack 1 on Windows 7 / Server 2008 R2."
return
}
if($osVersion -eq [version]"6.3.9600") {
$hotfix = Get-HotFix | where hotfixID -eq KB2919355
if($hotfix -eq $null) {
Write-Warning "$packageName requires KB2919355 on Windows 8.1 / Server 2012 R2."
return
}
}
Install-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-Url "$url" `
-Checksum "$checksum" `
-ChecksumType "$checksumType" `
-SilentArgs "$silentArgs" `
-ValidExitCodes $validExitCodes
Write-Warning "$packageName requires to restart Windows for complete installation."
$packageName = 'CorvusSKK'
$installerType = 'exe'
$bundleUpgradeCode = '{F2664253-EAE9-4ED5-AD92-03229BD8F64F}'
$silentArgs = '/uninstall /quiet /norestart'
$validExitCodes = @(0, 3010)
$keys = Get-ItemProperty -Path @('HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*',
'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*') `
-ErrorAction SilentlyContinue `
| Where-Object { $_.BundleUpgradeCode -contains $bundleUpgradeCode }
foreach($key in $keys) {
$file = $key.BundleCachePath
Uninstall-ChocolateyPackage -PackageName "$packageName" `
-FileType "$installerType" `
-SilentArgs "$silentArgs" `
-ValidExitCodes $validExitCodes `
-File "$file"
Write-Warning "$packageName requires to restart Windows for complete uninstallation."
break
}
Log in or click on link to see number of positives.
- corvusskk.2.7.5.nupkg (aa27da8b541f) - ## / 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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
CorvusSKK 2.8.0 | 269 | Saturday, July 25, 2020 | Approved |
CorvusSKK 2.7.12 | 256 | Tuesday, April 21, 2020 | Approved |
CorvusSKK 2.7.11 | 301 | Wednesday, January 8, 2020 | Approved |
CorvusSKK 2.7.10 | 196 | Thursday, November 21, 2019 | Approved |
CorvusSKK 2.7.9 | 104 | Sunday, November 17, 2019 | Approved |
CorvusSKK 2.7.8 | 247 | Sunday, August 4, 2019 | Approved |
CorvusSKK 2.7.7 | 174 | Sunday, June 23, 2019 | Approved |
CorvusSKK 2.7.6 | 226 | Wednesday, April 17, 2019 | Approved |
CorvusSKK 2.7.5 | 109 | Sunday, April 14, 2019 | Approved |
CorvusSKK 2.7.4 | 244 | Thursday, January 3, 2019 | Approved |
CorvusSKK 2.7.3 | 147 | Sunday, December 23, 2018 | Approved |
CorvusSKK 2.7.2 | 149 | Friday, December 7, 2018 | Approved |
CorvusSKK 2.7.1 | 209 | Sunday, October 7, 2018 | Approved |
CorvusSKK 2.7.0 | 231 | Saturday, August 4, 2018 | Approved |
CorvusSKK 2.6.1 | 363 | Wednesday, March 21, 2018 | Approved |
CorvusSKK 2.6.0 | 237 | Monday, March 12, 2018 | Approved |
CorvusSKK 2.5.9 | 283 | Tuesday, January 30, 2018 | Approved |
CorvusSKK 2.5.8 | 249 | Sunday, January 28, 2018 | Approved |
CorvusSKK 2.5.7 | 278 | Sunday, January 21, 2018 | Approved |
CorvusSKK 2.5.6 | 330 | Saturday, November 11, 2017 | Approved |
CorvusSKK 2.5.5 | 315 | Sunday, September 24, 2017 | Approved |
CorvusSKK 2.5.4.20170910 | 275 | Sunday, September 10, 2017 | Approved |
CorvusSKK 2.5.4 | 252 | Sunday, September 10, 2017 | Approved |
CorvusSKK 2.5.3 | 312 | Tuesday, August 15, 2017 | Approved |
CorvusSKK 2.5.2 | 387 | Sunday, April 30, 2017 | Approved |
CorvusSKK 2.5.1 | 378 | Sunday, February 26, 2017 | Approved |
CorvusSKK 2.5.0 | 445 | Tuesday, November 8, 2016 | Approved |
CorvusSKK 2.4.5.20160907 | 424 | Wednesday, September 7, 2016 | Approved |
CorvusSKK 2.4.5 | 325 | Sunday, September 4, 2016 | Approved |
CorvusSKK 2.4.4 | 325 | Monday, July 11, 2016 | Approved |
CorvusSKK 2.4.3 | 239 | Saturday, July 9, 2016 | Approved |
CorvusSKK 2.4.2 | 295 | Wednesday, June 22, 2016 | Approved |
CorvusSKK 2.4.1 | 278 | Monday, June 13, 2016 | Approved |
CorvusSKK 2.4.0 | 316 | Sunday, May 15, 2016 | Approved |
CorvusSKK 2.3.4 | 302 | Thursday, May 12, 2016 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about CorvusSKK and the CorvusSKK 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 CorvusSKK, 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.