-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
105 additions
and
0 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 |
---|---|---|
@@ -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) |
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,38 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>pc-decrapifier</id> | ||
<version>3.0.1.20161106</version> | ||
<title>The PC Decrapifier</title> | ||
<authors>pcdecrapifier.com</authors> | ||
<owners>bcurran3</owners> | ||
<packageSourceUrl></packageSourceUrl> | ||
<projectUrl>https://www.pcdecrapifier.com/</projectUrl> | ||
<iconUrl>https://d3342og8rhzilt.cloudfront.net/assets/pc-decrapifier-logo-3726730c47740a1a5cb08e05a63d93df.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>![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.</description> | ||
<summary>The PC Decrapifier ...it's like TP for your PC</summary> | ||
<releaseNotes>added checksums</releaseNotes> | ||
<copyright>Copyright © 2007 — 2016 pcdecrapifier.com</copyright> | ||
<tags>pcdecrapifier decrapifier system cleanup</tags> | ||
<docsUrl>https://www.pcdecrapifier.com/faq</docsUrl> | ||
</metadata> | ||
<files> | ||
<file src="tools\**" target="tools" /> | ||
</files> | ||
</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,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" | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
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,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' |