Skip to content

Commit

Permalink
AU: 1 updated - bulk-crap-uninstaller
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jan 29, 2018
1 parent 2be33ce commit caee1f7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions automatic/bulk-crap-uninstaller/bulk-crap-uninstaller.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<id>bulk-crap-uninstaller</id>
<title>Bulk Crap Uninstaller</title>
<owners>chocolatey</owners>
<version>4.1</version>
<version>4.2</version>
<authors>Marcin Szeniak</authors>
<summary>Bulk Crap Uninstaller is an open source program uninstaller.</summary>
<description><![CDATA[Bulk Crap Uninstaller (or BCUninstaller) is a free (as in speech) program uninstaller. It excels at removing large amounts of applications with minimal user input. It can clean up leftovers, detect orphaned applications, run uninstallers according to premade lists, and much more! Even though BCU was made with IT pros in mind, by default it is so straight-forward that anyone can use it.
Expand Down Expand Up @@ -37,7 +37,7 @@ BCU is fully compatible with Windows Store Apps, Steam, Windows Features and has
<licenseUrl>https://github.com/Klocman/Bulk-Crap-Uninstaller/blob/master/Licence.txt</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.rawgit.com/chocolatey/chocolatey-coreteampackages/11b6ffab0e41ca0e687b1202046aa0248682e8be/icons/bulk-crap-uninstaller.png</iconUrl>
<releaseNotes>https://github.com/Klocman/Bulk-Crap-Uninstaller/releases/tag/v4.1</releaseNotes>
<releaseNotes>https://github.com/Klocman/Bulk-Crap-Uninstaller/releases/tag/v4.2</releaseNotes>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/bulk-crap-uninstaller</packageSourceUrl>
<projectSourceUrl>https://github.com/Klocman/Bulk-Crap-Uninstaller</projectSourceUrl>
<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions automatic/bulk-crap-uninstaller/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ Package can be verified like this:

1. Go to

x32: https://github.com/Klocman/Bulk-Crap-Uninstaller/releases/download/v4.1/BCUninstaller_4.1_setup.exe
x32: https://github.com/Klocman/Bulk-Crap-Uninstaller/releases/download/v4.2/BCUninstaller_4.2_setup.exe

to download the installer.

2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'

checksum32: 545E7E3FD16D3B4D1EF81F75FC98B30A50BE1859951EB82EC82D91E57EB12DDA
checksum32: 6EC0A96D4C595EABBD3E51FC332D8575D721A2EE0F08A08DA42989221E61E0B1

File 'license.txt' is obtained from:
https://github.com/Klocman/Bulk-Crap-Uninstaller/blob/master/Licence.txt
4 changes: 2 additions & 2 deletions automatic/bulk-crap-uninstaller/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ $toolsPath = Split-Path $MyInvocation.MyCommand.Definition
$packageArgs = @{
packageName = 'bulk-crap-uninstaller'
fileType = 'exe'
file = gi $toolsPath\*.exe
file = Get-Item $toolsPath\*.exe
silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART'
softwareName = 'BCUninstaller'
}
Install-ChocolateyInstallPackage @packageArgs
ls $toolsPath\*.exe | % { rm $_ -ea 0; if (Test-Path $_) { sc "$_.ignore" }}
Get-ChildItem $toolsPath\*.exe | ForEach-Object { Remove-Item $_ -ea 0; if (Test-Path $_) { Set-Content "$_.ignore" }}

0 comments on commit caee1f7

Please sign in to comment.