From 377bd942a2754b77c434fc35cc9ba91ce5908a3d Mon Sep 17 00:00:00 2001 From: Tunisiano187 Date: Fri, 28 Jun 2024 14:36:19 +0000 Subject: [PATCH] Package download samsung-kies [skip ci] --- automatic/samsung-kies/README.md | 17 ++++++++++++ automatic/samsung-kies/samsung-kies.nuspec | 27 +++++++++++++++++++ .../samsung-kies/tools/chocolateyinstall.ps1 | 17 ++++++++++++ .../tools/chocolateyuninstall.ps1 | 14 ++++++++++ 4 files changed, 75 insertions(+) create mode 100644 automatic/samsung-kies/README.md create mode 100644 automatic/samsung-kies/samsung-kies.nuspec create mode 100644 automatic/samsung-kies/tools/chocolateyinstall.ps1 create mode 100644 automatic/samsung-kies/tools/chocolateyuninstall.ps1 diff --git a/automatic/samsung-kies/README.md b/automatic/samsung-kies/README.md new file mode 100644 index 000000000..4407a54a8 --- /dev/null +++ b/automatic/samsung-kies/README.md @@ -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) diff --git a/automatic/samsung-kies/samsung-kies.nuspec b/automatic/samsung-kies/samsung-kies.nuspec new file mode 100644 index 000000000..b89e7e19a --- /dev/null +++ b/automatic/samsung-kies/samsung-kies.nuspec @@ -0,0 +1,27 @@ + + + + samsung-kies + 3.2.16044.220161008 + Samsung Kies (Install) + Samsung Electronics + bcurran3 + + http://www.samsung.com/in/support/usefulsoftware/KIES/ + http://www.samsung.com/us/system/support/2015/08/21/kiesIcon.png + false + ![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 + Samsung Kies connects your mobile phone to your PC, making it easier for you to synchronize data between devices and find new apps + added checksums + Copyright 2009 Samsung Electronics Co., Ltd. + samsung galaxy kies kies3 admin + http://www.samsung.com/in/support/usefulsoftware/KIESTUTORIAL/JSP + + + + + diff --git a/automatic/samsung-kies/tools/chocolateyinstall.ps1 b/automatic/samsung-kies/tools/chocolateyinstall.ps1 new file mode 100644 index 000000000..9ec08d78e --- /dev/null +++ b/automatic/samsung-kies/tools/chocolateyinstall.ps1 @@ -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 diff --git a/automatic/samsung-kies/tools/chocolateyuninstall.ps1 b/automatic/samsung-kies/tools/chocolateyuninstall.ps1 new file mode 100644 index 000000000..da4306771 --- /dev/null +++ b/automatic/samsung-kies/tools/chocolateyuninstall.ps1 @@ -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