chocolatey-packages icon indicating copy to clipboard operation
chocolatey-packages copied to clipboard

chocolateynuget packages published on chocolatey.org

Results 69 chocolatey-packages issues
Sort by recently updated
recently updated
newest added

Fix packages that were skipped in #163 ``` bash $ grep -i 'catch' */tools/*ninstall.ps1 couchpotato.work/tools/chocolateyUninstall.ps1: catch couchpotato.work/tools/chocolateyUninstall.ps1:} catch { fastcopy.install/tools/chocolateyUninstall.ps1: Catch { fastcopy.install/tools/chocolateyUninstall.ps1: Catch {Write-Warning $_.Exception.Message} i2p/tools/chocolateyUninstall.ps1:} catch { izpack/tools/chocolateyUninstall.ps1:}...

``` eviacam The format of the URI "" cannot be determined. duplicati.portable The format of the URI "" cannot be determined. fah The remote server returned an error: (403) Forbidden....

ketarin

`$ for i in $(grep -liP '(?

1_backlog

Challenging because they use temporary URLs based on cookies and other obstacles. Examples http://www.majorgeeks.com http://download.cnet.com/ http://www.freewarefiles.com/ http://www.softpedia.com/ http://uptodown.com/ http://www.softonic.com/ http://www.majorgeeks.com/files/details/hardwarefreak.html http://download.cnet.com/Hardware-Freak/3000-20864-75578466.html http://www.freewarefiles.com/Hardware-Freakprogram71126.html http://www.softpedia.com/get/System/System-Info/Hardware-Freak.shtml http://hardware-freak.en.uptodown.com/ Sites that have been solved http://filehippo.com...

1_backlog

#### Example `Install-ChocolateyPackage "$packageName" "$installerType" "$silentArgs" "$url" "$url64" -validExitCodes $validExitCodes -checksum "$checksum" -checksumType "$checksumType" -checksum64 "$checksum64" -checksumType64 "$checksumType64"` ##### Use command continuation for long lines ``` powershell Install-ChocolateyPackage "$packageName" `...

ps1
prettify

After uninstall, many files remain in `$env:LocalAppData\Github\PortableGit_*` - **207** MB - **5,266** files - **588** folders

ps1

Same issue here as on chocolatey.org; command is not broken. ``` powershell Install-ChocolateyPackage -PackageName "$packageName" -FileType "$installerType" -SilentArgs "$silentArgs" -Url "$url" -Url64bit "$url64" -ValidExitCodes $validExitCodes -Checksum "$checksum" -ChecksumType "$checksumType" -Checksum64...

ps1
prettify
1_backlog

.Net Foundation code ownership and management gep13 > in the context of the license, when you join .Net Foundation you basically extend any existing license that a project has to...

note

typical error ``` powershell $chocTempDir = Join-Path $Env:Temp "chocolatey" $tempDir = Join-Path $chocTempDir "$packageName" if (![System.IO.Directory]::Exists($tempDir)) {[System.IO.Directory]::CreateDirectory($tempDir)} $installFile = Join-Path $tempDir "$($packageName).$($installerType)" ``` Saves temporary download files to: `%LocalAppData%\Temp\chocolatey\chocolatey\$packageName\$installFile`

ps1

#### Deprecate custom WebClient code Currently, **29** packages are passing referer headers like: https://github.com/dtgm/chocolatey-packages/blob/master/automatic/nirlauncher/tools/chocolateyInstall.ps1#L13-L16 ``` $referer = "http://launcher.nirsoft.net/download.html" $wc = New-Object System.Net.WebClient $wc.Headers.Add("Referer", $referer) $wc.DownloadFile($url, $zipFile) ``` #### Update to...