Downloads:
5,182
Downloads of v 4.2.1.4127:
119
Last Update:
10 Oct 2024
Package Maintainer(s):
Software Author(s):
- Kakao Corp.
Tags:
kakao talk kakaotalk daum chat message messaging text video call group- 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
KakaoTalk
- 1
- 2
- 3
4.2.1.4127 | Updated: 10 Oct 2024
- 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:
5,182
Downloads of v 4.2.1.4127:
119
Maintainer(s):
Software Author(s):
- Kakao Corp.
KakaoTalk 4.2.1.4127
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Kakao Corp. The inclusion of Kakao Corp. trademark(s), if any, upon this webpage is solely to identify Kakao Corp. 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
Deployment Method: Individual Install, Upgrade, & Uninstall
To install KakaoTalk, run the following command from the command line or from PowerShell:
To upgrade KakaoTalk, run the following command from the command line or from PowerShell:
To uninstall KakaoTalk, 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 kakaotalk --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 kakaotalk -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 kakaotalk -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 kakaotalk
win_chocolatey:
name: kakaotalk
version: '4.2.1.4127'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'kakaotalk' do
action :install
source 'INTERNAL REPO URL'
version '4.2.1.4127'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller kakaotalk
{
Name = "kakaotalk"
Version = "4.2.1.4127"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'kakaotalk':
ensure => '4.2.1.4127',
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...
There are versions of this package awaiting moderation . See the Version History section below.
This package was approved as a trusted package on 11 Oct 2024.
KakaoTalk provides free calling and messaging services.
NOTE: This package is automatically updated. If it is out of date and there is no newer package submitted, please use the Contact Maintainers
functionality to alert them.
$ErrorActionPreference = 'Stop';
$packageName = $env:ChocolateyPackageName
$softwareName = 'KakaoTalk*'
$installerType = 'exe'
$silentArgs = '/S'
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
$key | ForEach-Object {
$file = $($_.UninstallString)
if ($installerType -eq 'MSI') {
$silentArgs = "$($_.PSChildName) $silentArgs"
$file = ''
}
& $file $silentargs
$wshell = New-Object -ComObject WScript.Shell
while ($wshell.AppActivate("KakaoTalk Uninstall") -eq $false) {
Start-Sleep -Seconds 1
}
$wshell.SendKeys("{ENTER}")
}
} 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(s) the following keys were matched:"
$key | ForEach-Object {Write-Warning "- $_.DisplayName"}
}
Log in or click on link to see number of positives.
- kakaotalk.4.2.1.4127.nupkg (ae8b86e28116) - ## / 67
- KakaoTalk_Setup.exe (0fec54afa94c) - ## / 64
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 |
---|---|---|---|---|
KakaoTalk 4.2.1.4127 | 119 | Thursday, October 10, 2024 | Approved | |
KakaoTalk 4.2.0.4122 | 296 | Monday, October 7, 2024 | Approved | |
KakaoTalk 4.2.0.4118 | 14 | Monday, October 7, 2024 |
Waiting for Maintainer
|
|
KakaoTalk 4.1.6.4065 | 200 | Monday, August 26, 2024 | Approved | |
KakaoTalk 4.1.5.4057 | 89 | Tuesday, August 13, 2024 | Approved | |
KakaoTalk 4.1.0.3977 | 177 | Wednesday, July 10, 2024 | Approved | |
KakaoTalk 4.0.6.3920 | 172 | Monday, June 3, 2024 | Approved | |
KakaoTalk 4.0.5.3918 | 70 | Wednesday, May 29, 2024 | Approved | |
KakaoTalk 4.0.0.3881 | 231 | Wednesday, April 24, 2024 | Approved | |
KakaoTalk 4.0.0.3873 | 83 | Wednesday, April 17, 2024 | Approved | |
KakaoTalk 3.8.0.3829 | 165 | Monday, March 18, 2024 | Approved | |
KakaoTalk 3.8.0.3825 | 63 | Tuesday, March 12, 2024 | Approved | |
KakaoTalk 3.8.0.3819 | 64 | Sunday, March 10, 2024 | Approved | |
KakaoTalk 3.7.7.3773 | 195 | Monday, February 5, 2024 | Approved | |
KakaoTalk 3.7.6.3770 | 81 | Tuesday, January 30, 2024 | Approved | |
KakaoTalk 3.7.6.3768 | 79 | Thursday, January 25, 2024 | Approved | |
KakaoTalk 3.7.5.3766 | 44 | Wednesday, January 24, 2024 | Approved | |
KakaoTalk 3.7.0.3716 | 216 | Tuesday, December 19, 2023 | Approved | |
KakaoTalk 3.7.0.3714 | 52 | Monday, December 18, 2023 | Approved | |
KakaoTalk 3.6.7.3673 | 226 | Friday, November 10, 2023 | Approved | |
KakaoTalk 3.6.6.3669 | 80 | Monday, November 6, 2023 | Approved | |
KakaoTalk 3.6.5.3663 | 82 | Wednesday, November 1, 2023 | Approved | |
KakaoTalk 3.6.2.3602 | 240 | Tuesday, September 19, 2023 | Approved | |
KakaoTalk 3.6.1.3598 | 74 | Thursday, September 14, 2023 | Approved | |
KakaoTalk 3.6.1.3597 | 46 | Thursday, September 14, 2023 | Approved | |
KakaoTalk 3.6.0.3593 | 65 | Wednesday, September 13, 2023 | Approved | |
KakaoTalk 3.5.5.3553 | 268 | Wednesday, August 2, 2023 | Approved | |
KakaoTalk 3.5.1.3469 | 326 | Wednesday, May 17, 2023 | Approved | |
KakaoTalk 3.5.0.3467 | 86 | Wednesday, May 10, 2023 | Approved | |
KakaoTalk 3.4.9.3450 | 121 | Tuesday, April 25, 2023 | Approved | |
KakaoTalk 3.4.8.3412 | 85 | Monday, April 3, 2023 | Approved | |
KakaoTalk 3.4.8.3410 | 176 | Wednesday, March 29, 2023 | Approved | |
KakaoTalk 3.4.7.3369 | 249 | Tuesday, February 21, 2023 | Approved | |
KakaoTalk 3.4.6.3321 | 233 | Friday, January 13, 2023 | Approved | |
KakaoTalk 3.4.5.3317 | 53 | Wednesday, January 11, 2023 | Approved | |
KakaoTalk 3.4.4.3285 | 142 | Tuesday, January 10, 2023 | Approved | |
KakaoTalk 3.4.3.3222 | 153 | Saturday, November 26, 2022 | Approved |
(C) Kakao Corp.
This package has no dependencies.
Ground Rules:
- This discussion is only about KakaoTalk and the KakaoTalk 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 KakaoTalk, 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.