Skip to content

Commit

Permalink
Package download samsung-kies
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
tunisiano187 committed Jun 28, 2024
1 parent 47fa895 commit 377bd94
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 0 deletions.
17 changes: 17 additions & 0 deletions automatic/samsung-kies/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[![](https://img.shields.io/chocolatey/v/samsung-kies?color=green&label=samsung-kies)](https://chocolatey.org/packages/samsung-kies) [![](https://img.shields.io/chocolatey/dt/samsung-kies)](https://chocolatey.org/packages/samsung-kies)

## Samsung Kies (Install)

![Screenshot of Samsung Kies](http://samsungsimulator.com/output/img/image/product_1690/kies2.6_backup_00_1406194066819.png)

Samsung Kies creates a bridge between your phone and desktop computer. Kies connects the devices via USB cable or Wifi. Whether it’s managing your music, photos, videos, downloading podcasts or creating a safety backup of your contacts and calendars, Kies combines all of these features in a fresh and easy to use interface. Playlists can be created and synchronized across different devices and platforms including iTunes. To keep your phone up to date, Kies lets you download applications, e.g. from Samsung App Store, and firmwares to install them on your phone instantly. Kies Air is the smartphone version of the program that brings the experience to your phone, too.
Supported model : Smart Phone/Tablet from Galaxy Note III (Android OS 4.3 or over)
NOTE: Version at time of packaging is 3.2.16035_2

#### [choco://samsung-kies](choco://samsung-kies)
To use choco:// protocol URLs, install [(unofficial) choco:// Protocol support ](https://chocolatey.org/packages/choco-protocol-support)

### Package-specific issue
If this package isn't up-to-date for some days, [Create an issue](https://github.com/tunisiano187/Chocolatey-packages/issues/new/choose)

Support the package maintainer and [![Patreon](https://cdn.jsdelivr.net/gh/tunisiano187/Chocolatey-packages@d15c4e19c709e7148588d4523ffc6dd3cd3c7e5e/icons/patreon.png)](https://www.patreon.com/tunisiano)
27 changes: 27 additions & 0 deletions automatic/samsung-kies/samsung-kies.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>samsung-kies</id>
<version>3.2.16044.220161008</version>
<title>Samsung Kies (Install)</title>
<authors>Samsung Electronics</authors>
<owners>bcurran3</owners>
<packageSourceUrl></packageSourceUrl>
<projectUrl>http://www.samsung.com/in/support/usefulsoftware/KIES/</projectUrl>
<iconUrl>http://www.samsung.com/us/system/support/2015/08/21/kiesIcon.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>![Screenshot of Samsung Kies](http://samsungsimulator.com/output/img/image/product_1690/kies2.6_backup_00_1406194066819.png)

Samsung Kies creates a bridge between your phone and desktop computer. Kies connects the devices via USB cable or Wifi. Whether it’s managing your music, photos, videos, downloading podcasts or creating a safety backup of your contacts and calendars, Kies combines all of these features in a fresh and easy to use interface. Playlists can be created and synchronized across different devices and platforms including iTunes. To keep your phone up to date, Kies lets you download applications, e.g. from Samsung App Store, and firmwares to install them on your phone instantly. Kies Air is the smartphone version of the program that brings the experience to your phone, too.
Supported model : Smart Phone/Tablet from Galaxy Note III (Android OS 4.3 or over)
NOTE: Version at time of packaging is 3.2.16035_2</description>
<summary>Samsung Kies connects your mobile phone to your PC, making it easier for you to synchronize data between devices and find new apps</summary>
<releaseNotes>added checksums</releaseNotes>
<copyright>Copyright 2009 Samsung Electronics Co., Ltd.</copyright>
<tags>samsung galaxy kies kies3 admin</tags>
<docsUrl>http://www.samsung.com/in/support/usefulsoftware/KIESTUTORIAL/JSP</docsUrl>
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>
17 changes: 17 additions & 0 deletions automatic/samsung-kies/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
$packageName= 'samsung-kies'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'http://downloadcenter.samsung.com/content/SW/201604/20160428144359623/Kies3Setup.exe'

$packageArgs = @{
packageName = $packageName
unzipLocation = $toolsDir
fileType = 'EXE'
url = $url
checksum = '4B5628AA53824993E039538518DCCBDA2D6A81DD0C0EA2740DFDF96C1953B037'
checksumType = 'sha256'
silentArgs = '/S /v/qn'
validExitCodes= @(0)
softwareName = 'Samsung Kies3*'
}

Install-ChocolateyPackage @packageArgs
14 changes: 14 additions & 0 deletions automatic/samsung-kies/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
$packageName= 'samsung-kies'
$softwareName = 'Samsung Kies3*'
$installerType = 'EXE'
$silentArgs = '/S /v /qn /removeonly'
$validExitCodes = @(0)
$processor = Get-WmiObject Win32_Processor
$is64bit = $processor.AddressWidth -eq 64
if ($is64bit) {
$unpath = "${Env:ProgramFiles(x86)}\InstallShield Installation Information\{88547073-C566-4895-9005-EBE98EA3F7C7}\setup.exe"
} else {
$unpath = "${Env:ProgramFiles}\InstallShield Installation Information\{88547073-C566-4895-9005-EBE98EA3F7C7}\setup.exe"
}
Uninstall-ChocolateyPackage $packageName $installerType `
$silentArgs $unpath -validExitCodes $validExitCodes

0 comments on commit 377bd94

Please sign in to comment.