From 2bcb9bd3647000cb5b4bb998e5b052e4559f10a4 Mon Sep 17 00:00:00 2001 From: Tunisiano187 Date: Mon, 1 Jul 2024 17:05:59 +0000 Subject: [PATCH] Package download pc-decrapifier [skip ci] --- automatic/pc-decrapifier/README.md | 28 ++++++++++++++ .../pc-decrapifier/pc-decrapifier.nuspec | 38 +++++++++++++++++++ .../tools/chocolateyinstall.ps1 | 35 +++++++++++++++++ .../tools/chocolateyuninstall.ps1 | 4 ++ 4 files changed, 105 insertions(+) create mode 100644 automatic/pc-decrapifier/README.md create mode 100644 automatic/pc-decrapifier/pc-decrapifier.nuspec create mode 100644 automatic/pc-decrapifier/tools/chocolateyinstall.ps1 create mode 100644 automatic/pc-decrapifier/tools/chocolateyuninstall.ps1 diff --git a/automatic/pc-decrapifier/README.md b/automatic/pc-decrapifier/README.md new file mode 100644 index 000000000..98275c355 --- /dev/null +++ b/automatic/pc-decrapifier/README.md @@ -0,0 +1,28 @@ +[![](https://img.shields.io/chocolatey/v/pc-decrapifier?color=green&label=pc-decrapifier)](https://chocolatey.org/packages/pc-decrapifier) [![](https://img.shields.io/chocolatey/dt/pc-decrapifier)](https://chocolatey.org/packages/pc-decrapifier) + +## The PC Decrapifier + +![Screenshot of PC Decrapifier](https://d3342og8rhzilt.cloudfront.net/assets/pcdc-2-d129042923fc81ca07365939d5213bc6.png) + +Is your PC running slow? Even brand new PCs often come with LOTS of pre-installed software that can cause that new machine to come to a crawl. Not to mention all of the annoying pop-ups! Others may have a PC that's a couple years old and we're the ones that installed a bunch of junk! It happens to the best of us. We try a bunch of programs over time and forget to remove them. + +The PC Decrapifier is here to help! It's a free tool for you to use that helps remove programs, unnecessary startup items and icons that can slow down your PC. It takes you step by step, giving you recommendations on what to remove, many of which can be removed unattended. + +####About +The PC Decrapifier is a program designed to suggest and remove unwanted software. It can be used to clean off most of the annoying software that is typically shipped with new PCs. + +####Super Easy +The PC Decrapifier provides an easy step-by-step process to help you remove the garbage clogging up your computer. +####You're In Control +Nothing is removed without your approval. We show you the list before anything is removed. +####Community Recommendations +Decide what to remove based on our community of PC Decrapifier users. +####Just download and run it. There is no installer. There's no UNinstaller. It's all self-contained. + +#### [choco://pc-decrapifier](choco://pc-decrapifier) +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/pc-decrapifier/pc-decrapifier.nuspec b/automatic/pc-decrapifier/pc-decrapifier.nuspec new file mode 100644 index 000000000..75abebe04 --- /dev/null +++ b/automatic/pc-decrapifier/pc-decrapifier.nuspec @@ -0,0 +1,38 @@ + + + + pc-decrapifier + 3.0.1.20161106 + The PC Decrapifier + pcdecrapifier.com + bcurran3 + + https://www.pcdecrapifier.com/ + https://d3342og8rhzilt.cloudfront.net/assets/pc-decrapifier-logo-3726730c47740a1a5cb08e05a63d93df.png + false + ![Screenshot of PC Decrapifier](https://d3342og8rhzilt.cloudfront.net/assets/pcdc-2-d129042923fc81ca07365939d5213bc6.png) + +Is your PC running slow? Even brand new PCs often come with LOTS of pre-installed software that can cause that new machine to come to a crawl. Not to mention all of the annoying pop-ups! Others may have a PC that's a couple years old and we're the ones that installed a bunch of junk! It happens to the best of us. We try a bunch of programs over time and forget to remove them. + +The PC Decrapifier is here to help! It's a free tool for you to use that helps remove programs, unnecessary startup items and icons that can slow down your PC. It takes you step by step, giving you recommendations on what to remove, many of which can be removed unattended. + +####About +The PC Decrapifier is a program designed to suggest and remove unwanted software. It can be used to clean off most of the annoying software that is typically shipped with new PCs. + +####Super Easy +The PC Decrapifier provides an easy step-by-step process to help you remove the garbage clogging up your computer. +####You're In Control +Nothing is removed without your approval. We show you the list before anything is removed. +####Community Recommendations +Decide what to remove based on our community of PC Decrapifier users. +####Just download and run it. There is no installer. There's no UNinstaller. It's all self-contained. + The PC Decrapifier ...it's like TP for your PC + added checksums + Copyright © 2007 — 2016 pcdecrapifier.com + pcdecrapifier decrapifier system cleanup + https://www.pcdecrapifier.com/faq + + + + + diff --git a/automatic/pc-decrapifier/tools/chocolateyinstall.ps1 b/automatic/pc-decrapifier/tools/chocolateyinstall.ps1 new file mode 100644 index 000000000..1ef724270 --- /dev/null +++ b/automatic/pc-decrapifier/tools/chocolateyinstall.ps1 @@ -0,0 +1,35 @@ +$ErrorActionPreference = 'Stop' +$packageName='pc-decrapifier' +$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" +$url = 'https://s3.amazonaws.com/dl.pcdecrapifier.com/pc-decrapifier-3.0.1.exe' +$scriptDir = $(Split-Path -parent $MyInvocation.MyCommand.Definition); +$installerPackage = Join-Path $scriptDir "pc-decrapifier-3.0.1.exe"; + +$packageArgs = @{ + packageName = $packageName + fileType = 'EXE' + url = $url + FileFullPath = $installerPackage + softwareName = '' + checksum = 'FEB352471748F445CBA237FD4188C6E8D996D9318358D1FCEA4EAF90018253D1' + checksumType = 'sha256' +} + +Get-ChocolateyWebFile @packageArgs + +Install-ChocolateyShortcut -shortcutFilePath "$env:Public\Desktop\The PC Decrapifier.lnk" -targetPath "$env:ChocolateyInstall\lib\pc-decrapifier\tools\pc-decrapifier-3.0.1.exe" +Install-ChocolateyShortcut -shortcutFilePath "$env:ProgramData\Microsoft\Windows\Start Menu\Programs\The PC Decrapifier.lnk" -targetPath "$env:ChocolateyInstall\lib\pc-decrapifier\tools\pc-decrapifier-3.0.1.exe" + + + + + + + + + + + + + + diff --git a/automatic/pc-decrapifier/tools/chocolateyuninstall.ps1 b/automatic/pc-decrapifier/tools/chocolateyuninstall.ps1 new file mode 100644 index 000000000..0c7fdaed9 --- /dev/null +++ b/automatic/pc-decrapifier/tools/chocolateyuninstall.ps1 @@ -0,0 +1,4 @@ +$packageName= 'pc-decrapifier' + +remove-item "$env:Public\Desktop\The PC Decrapifier.lnk" -Force -ErrorAction 'SilentlyContinue' +remove-item "$env:ProgramData\Microsoft\Windows\Start Menu\Programs\The PC Decrapifier.lnk" -Force -ErrorAction 'SilentlyContinue' \ No newline at end of file