-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update/add packages
- Loading branch information
Showing
105 changed files
with
974 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
choco-auto | ||
========== | ||
|
||
my automatic packages for chocolatey | ||
my automatic packages for chocolatey |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. --> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>as-ssd</id> | ||
<title>AS SSD Benchmark</title> | ||
<version>1.8.5636.36856</version> | ||
<authors>Alex Schepeljanski</authors> | ||
<owners>Doc</owners> | ||
<summary>AS SSD is a reliable lightweight SSD-benchmarking Program.</summary> | ||
<description> | ||
AS SSD is a reliable lightweight SSD-benchmarking Program. | ||
|
||
The Program is available in German and English. To switch language go to | ||
|
||
Sprache -> Englisch</description> | ||
<projectUrl>http://www.alex-is.de/PHP/fusion/downloads.php?cat_id=4&download_id=9</projectUrl> | ||
<tags>as ssd benchmark read write </tags> | ||
<copyright></copyright> | ||
<licenseUrl>http://www.gnu.org/licenses/agpl-3.0.html</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<iconUrl>https://cdn.rawgit.com/aronovgj/chocolatey/master/icons/as-ssd.png</iconUrl> | ||
<releaseNotes></releaseNotes> | ||
</metadata> | ||
<files> | ||
<file src="tools\**" target="tools" /> | ||
</files> | ||
</package> | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
$packageName = 'as-ssd' | ||
$url = 'http://www.alex-is.de/progs/AS SSD Benchmark.zip' | ||
$fileName = "AS SSD Benchmark.exe" | ||
$linkName = "AS SSD.lnk" | ||
$destdir = $(Split-Path -parent $MyInvocation.MyCommand.Definition) | ||
Install-ChocolateyZipPackage "$packageName" "$url" "$destdir" | ||
|
||
#install start menu shortcut | ||
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs) | ||
$shortcutFilePath = Join-Path $programs $linkName | ||
$targetPath = Join-Path $destdir $fileName | ||
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath $targetPath |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
$linkName = "AS SSD.lnk" | ||
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs) | ||
$shortcutFilePath = Join-Path $programs $linkName | ||
|
||
if(Test-Path $shortcutFilePath) { | ||
del $shortcutFilePath | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>ccenhancer</id> | ||
<title>CCEnhancer</title> | ||
<version>4.3.1</version> | ||
<authors>SingularLabs</authors> | ||
<owners>doc</owners> | ||
<summary> | ||
A small tool which adds support for over 1000 new programs into the popular program CCleaner. | ||
</summary> | ||
<description> | ||
A small tool which adds support for over 1000 new programs into the popular program CCleaner. | ||
|
||
The tool uses the winapp2.ini system built into CCleaner to easily add new rules and definitions for programs. | ||
|
||
The rules were sourced mainly from the Piriform Support Forum, with several sourced from other places around the internet. | ||
</description> | ||
<projectUrl>http://singularlabs.com/software/ccenhancer/download/</projectUrl> | ||
<tags>plugin add-on cleaner ccleaner</tags> | ||
<copyright></copyright> | ||
<dependencies> | ||
<dependency id="ccleaner" /> | ||
</dependencies> | ||
<licenseUrl>http://en.wikipedia.org/wiki/Freeware</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<iconUrl>https://cdn.rawgit.com/aronovgj/chocolatey/master/icons/ccenhancer.png</iconUrl> | ||
</metadata> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
$packageName = 'ccenhancer' | ||
$url = 'https://singularlabs.com/download/10320/' | ||
$unzipLocation = $(Split-Path -parent $MyInvocation.MyCommand.Definition) | ||
$fileName = "CCEnhancer.exe" | ||
$linkName = "CCEnhancer.lnk" | ||
|
||
|
||
$folder = Get-ChildItem $unzipLocation | Where-Object {$_.Name -match "CCEnhancer*"} | ||
|
||
If ($folder){ | ||
If (Test-Path $folder){ | ||
Remove-Item $folder | ||
} | ||
} | ||
Install-ChocolateyZipPackage $packageName $url $unzipLocation | ||
|
||
$folder = Get-ChildItem $unzipLocation | Where-Object {$_.Name -match "CCEnhancer*"} | ||
$installDir = Join-Path $unzipLocation $folder | ||
$gui = Join-Path $installDir "CCEnhancer.exe.gui" | ||
New-Item $gui -type file -force | ||
|
||
#install start menu shortcut | ||
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs) | ||
$shortcutFilePath = Join-Path $programs $linkName | ||
$targetPath = Join-Path $installDir $fileName | ||
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath $targetPath |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,26 @@ | ||
$packageName = 'ccenhancer' | ||
$url = 'https://singularlabs.com/download/10320/' | ||
$unzipLocation = $(Split-Path -parent $MyInvocation.MyCommand.Definition) | ||
$fileName = "CCEnhancer.exe" | ||
$linkName = "CCEnhancer.lnk" | ||
|
||
|
||
$folder = Get-ChildItem $unzipLocation | Where-Object {$_.Name -match "CCEnhancer*"} | ||
|
||
If ($folder){ | ||
If (Test-Path $folder){ | ||
Remove-Item $folder | ||
} | ||
} | ||
Install-ChocolateyZipPackage $packageName $url $unzipLocation | ||
|
||
$folder = Get-ChildItem $unzipLocation | Where-Object {$_.Name -match "CCEnhancer*"} | ||
$installDir = Join-Path $unzipLocation $folder | ||
$gui = Join-Path $installDir "CCEnhancer.exe.gui" | ||
New-Item $gui -type file -force | ||
|
||
#install start menu shortcut | ||
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs) | ||
$shortcutFilePath = Join-Path $programs $linkName | ||
$targetPath = Join-Path $installDir $fileName | ||
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath $targetPath |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>cpu-z</id> | ||
<title>CPU-Z</title> | ||
<version>1.72.1</version> | ||
<authors>CPUID</authors> | ||
<owners>doc</owners> | ||
<summary> | ||
A freeware system profiler (system monitor) application that detects the central processing unit, RAM, motherboard chipset, and other hardware features of a modern personal computer, and presents the information in one window. | ||
</summary> | ||
<description> | ||
A freeware system profiler (system monitor) application that detects the central processing unit, RAM, motherboard chipset, and other hardware features of a modern personal computer, and presents the information in one window. | ||
</description> | ||
<projectUrl>http://www.cpuid.com/softwares/cpu-z.html</projectUrl> | ||
<tags>system-information hardware-info intel amd processor cpu</tags> | ||
<copyright></copyright> | ||
<licenseUrl>http://www.cpuid.com/softwares/hwmonitor-pro/eula.html</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<iconUrl>https://raw.githubusercontent.com/aronovgj/chocolatey/dbe77fd16587bb75b1e78a64a4ae7ddcc6edf579/icons/cpu-z.png</iconUrl> | ||
</metadata> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
$packageName = 'cpu-z' | ||
$installerType = 'EXE' | ||
$url = 'ftp://ftp.cpuid.com/cpu-z/cpu-z_1.72.1-en.exe' | ||
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' | ||
$validExitCodes = @(0) | ||
|
||
Install-ChocolateyPackage $packageName $installerType $silentArgs $url -validExitCodes $validExitCodes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
$packageName = 'cpu-z' | ||
$installerType = 'EXE' | ||
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-' | ||
$validExitCodes = @(0) | ||
|
||
$registryPath32 = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\CPUID CPU-Z_is1' | ||
$registryPathWow6432 = 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\CPUID CPU-Z_is1' | ||
|
||
|
||
if (Test-Path $registryPath32) { | ||
$registryPath = $registryPath32 | ||
} | ||
|
||
if (Test-Path $registryPathWow6432) { | ||
$registryPath = $registryPathWow6432 | ||
} | ||
|
||
if ($registryPath) { | ||
$uninstallString = (Get-ItemProperty -Path $registryPath -Name 'UninstallString').UninstallString | ||
} | ||
|
||
if ($uninstallString) { | ||
Uninstall-ChocolateyPackage $packageName $installerType $silentArgs $uninstallString | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>crystaldiskinfo</id> | ||
<title>CrystalDiskInfo</title> | ||
<version>6.5.0</version> | ||
<authors>hiyohiyo</authors> | ||
<owners>doc</owners> | ||
<summary> | ||
CrystalDiskInfo is a HDD/SSD utility software which shows the health status much more clearly than similar tools. | ||
</summary> | ||
<description> | ||
CrystalDiskInfo is a HDD/SSD utility software which shows the health status much more clearly than similar tools. | ||
The "Function / Graph" is especially interesting for the "Reallocated Sectors Count". | ||
If it increases over time or is very high already, the hard drive may need to be replaced. | ||
</description> | ||
<projectUrl>http://crystalmark.info/software/CrystalDiskInfo/index-e.html</projectUrl> | ||
<tags>disk diagnostic hdd ssd</tags> | ||
<copyright></copyright> | ||
<licenseUrl>http://crystalmark.info/software/CrystalDiskInfo/manual-en/License.html</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<iconUrl>https://cdn.rawgit.com/aronovgj/chocolatey/master/icons/crystaldiskinfo.png</iconUrl> | ||
</metadata> | ||
</package> |
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
$packageName = 'crystaldiskinfo' | ||
$url = 'http://sourceforge.jp/frs/redir.php?m=jaist&f=/crystaldiskinfo/63399/CrystalDiskInfo6_5_0.zip' | ||
$fileName = "DiskInfo.exe" | ||
$linkName = "CrystalDiskInfo.lnk" | ||
$destdir = $(Split-Path -parent $MyInvocation.MyCommand.Definition) | ||
Install-ChocolateyZipPackage "$packageName" "$url" "$destdir" | ||
|
||
#install start menu shortcut | ||
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs) | ||
$shortcutFilePath = Join-Path $programs $linkName | ||
$targetPath = Join-Path $destdir $fileName | ||
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath $targetPath |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
$linkName = "CrystalDiskInfo.lnk" | ||
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs) | ||
$shortcutFilePath = Join-Path $programs $linkName | ||
|
||
if(Test-Path $shortcutFilePath) { | ||
del $shortcutFilePath | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>crystaldiskinfo</id> | ||
<title>CrystalDiskInfo</title> | ||
<version>6.5.1</version> | ||
<authors>hiyohiyo</authors> | ||
<owners>doc</owners> | ||
<summary> | ||
CrystalDiskInfo is a HDD/SSD utility software which shows the health status much more clearly than similar tools. | ||
</summary> | ||
<description> | ||
CrystalDiskInfo is a HDD/SSD utility software which shows the health status much more clearly than similar tools. | ||
The "Function / Graph" is especially interesting for the "Reallocated Sectors Count". | ||
If it increases over time or is very high already, the hard drive may need to be replaced. | ||
</description> | ||
<projectUrl>http://crystalmark.info/software/CrystalDiskInfo/index-e.html</projectUrl> | ||
<tags>disk diagnostic hdd ssd</tags> | ||
<copyright></copyright> | ||
<licenseUrl>http://crystalmark.info/software/CrystalDiskInfo/manual-en/License.html</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<iconUrl>https://cdn.rawgit.com/aronovgj/chocolatey/master/icons/crystaldiskinfo.png</iconUrl> | ||
</metadata> | ||
</package> |
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
$packageName = 'crystaldiskinfo' | ||
$url = 'http://sourceforge.jp/frs/redir.php?m=jaist&f=/crystaldiskinfo/63399/CrystalDiskInfo6_5_1.zip' | ||
$fileName = "DiskInfo.exe" | ||
$linkName = "CrystalDiskInfo.lnk" | ||
$destdir = $(Split-Path -parent $MyInvocation.MyCommand.Definition) | ||
Install-ChocolateyZipPackage "$packageName" "$url" "$destdir" | ||
|
||
#install start menu shortcut | ||
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs) | ||
$shortcutFilePath = Join-Path $programs $linkName | ||
$targetPath = Join-Path $destdir $fileName | ||
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath $targetPath |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
$linkName = "CrystalDiskInfo.lnk" | ||
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs) | ||
$shortcutFilePath = Join-Path $programs $linkName | ||
|
||
if(Test-Path $shortcutFilePath) { | ||
del $shortcutFilePath | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>crystaldiskinfo</id> | ||
<title>CrystalDiskInfo</title> | ||
<version>6.5.2</version> | ||
<authors>hiyohiyo</authors> | ||
<owners>doc</owners> | ||
<summary> | ||
CrystalDiskInfo is a HDD/SSD utility software which shows the health status much more clearly than similar tools. | ||
</summary> | ||
<description> | ||
CrystalDiskInfo is a HDD/SSD utility software which shows the health status much more clearly than similar tools. | ||
The "Function / Graph" is especially interesting for the "Reallocated Sectors Count". | ||
If it increases over time or is very high already, the hard drive may need to be replaced. | ||
</description> | ||
<projectUrl>http://crystalmark.info/software/CrystalDiskInfo/index-e.html</projectUrl> | ||
<tags>disk diagnostic hdd ssd</tags> | ||
<copyright></copyright> | ||
<licenseUrl>http://crystalmark.info/software/CrystalDiskInfo/manual-en/License.html</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<iconUrl>https://cdn.rawgit.com/aronovgj/chocolatey/master/icons/crystaldiskinfo.png</iconUrl> | ||
</metadata> | ||
</package> |
Empty file.
Empty file.
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
$packageName = 'crystaldiskinfo' | ||
$url = 'http://sourceforge.jp/frs/redir.php?m=jaist&f=/crystaldiskinfo/63423/CrystalDiskInfo6_5_2.zip' | ||
$fileName = "DiskInfo.exe" | ||
$linkName = "CrystalDiskInfo.lnk" | ||
$destdir = $(Split-Path -parent $MyInvocation.MyCommand.Definition) | ||
Install-ChocolateyZipPackage "$packageName" "$url" "$destdir" | ||
|
||
#install start menu shortcut | ||
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs) | ||
$shortcutFilePath = Join-Path $programs $linkName | ||
$targetPath = Join-Path $destdir $fileName | ||
Install-ChocolateyShortcut -shortcutFilePath $shortcutFilePath -targetPath $targetPath |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
$linkName = "CrystalDiskInfo.lnk" | ||
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs) | ||
$shortcutFilePath = Join-Path $programs $linkName | ||
|
||
if(Test-Path $shortcutFilePath) { | ||
del $shortcutFilePath | ||
} |
Binary file added
BIN
+4.75 KB
_output/emsisoft-anti-malware/10.0.0.5409/emsisoft-anti-malware.10.0.0.5409.nupkg
Binary file not shown.
27 changes: 27 additions & 0 deletions
27
_output/emsisoft-anti-malware/10.0.0.5409/emsisoft-anti-malware.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>emsisoft-anti-malware</id> | ||
<title>Emsisoft Anti-Malware</title> | ||
<version>10.0.0.5409</version> | ||
<authors>Emsisoft</authors> | ||
<owners>doc</owners> | ||
<summary>Anti-Malware solution from Emsisoft</summary> | ||
<description> | ||
Emsisoft Anti-Malware is fueled by a dual engine malware scanner for twice the malware cleaning power, with no extra resource requirements. | ||
|
||
On top of that, Emsisoft Anti-Malware can even remove potentially unwanted programs (PUPs) that overload your computer with resource wasting bloat. | ||
|
||
Altogether, that guarantees superior detection, efficient removal, and a clean Windows operating system where you’re completely Malware-Free. | ||
|
||
By default Emsisoft Anti-Malware installs as a free fully functional 30 day trial version. After the trial period you can either choose to buy a full version license or switch to the limited freeware mode. The freeware mode still allows you to scan and clean infections, but it doesn't provide any real-time protection to guard against new infections. | ||
|
||
Emsisoft Anti-Malware doesn't allow package updates. Whoever comes up with a working uninstall script is welcome to share. | ||
</description> | ||
<projectUrl>http://www.emsisoft.com</projectUrl> | ||
<tags>anti-spyware anti-malware malware-remover real-time-protection virus</tags> | ||
<copyright></copyright> | ||
<licenseUrl>https://my.emsisoft.com/en_us/eula.html</licenseUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> <iconUrl>https://cdn.rawgit.com/aronovgj/chocolatey/master/icons/emsisoft-anti-malware.png</iconUrl> | ||
</metadata> | ||
</package> |
Oops, something went wrong.