Compare commits

1 Commits

Author SHA1 Message Date
46bb7198c9 init 2020-10-30 15:08:00 +02:00
6 changed files with 104 additions and 0 deletions

BIN
content/logo-symbol.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

37
surfshark.2.6.6.nuspec Normal file
View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>surfshark</id>
<version>2.6.6</version>
<title>surfshark (Install)</title>
<authors>thempb</authors>
<owners>Surfshark</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://surfshark.com/features</licenseUrl>
<projectUrl>https://surfshark.com/</projectUrl>
<packageSourceUrl></packageSourceUrl>
<iconUrl>https://surfshark.com/wp-content/themes/surfshark-9.041/assets/img/logos/logo.svg</iconUrl>
<description>Secure your digital life
Private access to the open internet.
Access content safely
Enjoy everything good that the internet has to offer, worry-free. Get instant, secured access to all the content you love.
Leave no footprints
Use Surfshark to make sure your location is private and your sensitive data is secure, at all times. Verified security
“To sum up, Cure53 is highly satisfied to see such a strong security posture on the Surfshark VPN extensions, especially given the common vulnerability of similar products to privacy issues.”</description>
<summary>Secure your digital life
Private access to the open internet.
Access content safely
Enjoy everything good that the internet has to offer, worry-free. Get instant, secured access to all the content you love.
Leave no footprints
Use Surfshark to make sure your location is private and your sensitive data is secure, at all times. Verified security
“To sum up, Cure53 is highly satisfied to see such a strong security posture on the Surfshark VPN extensions, especially given the common vulnerability of similar products to privacy issues.”</summary>
<tags>surfshark vpn</tags>
</metadata>
<files>
<file src="content\logo-symbol.png" target="content\logo-symbol.png" />
<file src="tools\chocolateyinstall.ps1" target="tools\chocolateyinstall.ps1" />
<file src="tools\chocolateyuninstall.ps1" target="tools\chocolateyuninstall.ps1" />
<file src="tools\LICENSE.txt" target="tools\LICENSE.txt" />
<file src="tools\VERIFICATION.txt" target="tools\VERIFICATION.txt" />
</files>
</package>

11
tools/LICENSE.txt Normal file
View File

@@ -0,0 +1,11 @@

Note: Include this file if including binaries you have the right to distribute.
Otherwise delete. this file.
===DELETE ABOVE THIS LINE AND THIS LINE===
From: <insert applicable license url here>
LICENSE
<Insert License Here>

13
tools/VERIFICATION.txt Normal file
View File

@@ -0,0 +1,13 @@

Note: Include this file if including binaries you have the right to distribute.
Otherwise delete. this file. If you are the software author, you can change this
mention you are the author of the software.
===DELETE ABOVE THIS LINE AND THIS LINE===
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
<Include details of how to verify checksum contents>
<If software vendor, explain that here - checksum verification instructions are optional>

View File

@@ -0,0 +1,42 @@

$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://downloads.surfshark.com/windows/latest/SurfsharkSetup.exe'
$packageArgs = @{
packageName = "Surfshark"
unzipLocation = $toolsDir
fileType = 'exe'
url = $url
softwareName = 'surfshark*'
checksum = 'F1236A602FC3EB6D5F0DD7FDBC95B812C6ADABB98970E237EF3C3A70F5B84CC9'
checksumType = 'sha256'
silentArgs = "/exenoui"
validExitCodes= @(0, 3010, 1641)
}
Install-ChocolateyPackage @packageArgs

View File

@@ -0,0 +1 @@
start-process -filepath "C:\ProgramData\Caphyon\Advanced Installer\{9E65D7E5-B255-493D-B95A-DECAB307DDF6}\SurfsharkSetup.exe" -argumentlist '/x {9E65D7E5-B255-493D-B95A-DECAB307DDF6} AI_UNINSTALLER_CTP=1 /qn'