Downloads:
1,827,429
Downloads of v 4.42.0.20160616:
21,704
Last Update:
17 Jun 2016
Package Maintainer(s):
Software Author(s):
- Irfan Skiljan
Tags:
image viewer editor converter thumbnail- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Mailing List
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
IrfanView
This is not the latest version of IrfanView available.
- 1
- 2
- 3
4.42.0.20160616 | Updated: 17 Jun 2016
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Mailing List
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,827,429
Downloads of v 4.42.0.20160616:
21,704
Maintainer(s):
Software Author(s):
- Irfan Skiljan
IrfanView 4.42.0.20160616
This is not the latest version of IrfanView available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Irfan Skiljan. The inclusion of Irfan Skiljan trademark(s), if any, upon this webpage is solely to identify Irfan Skiljan goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Are Exempted or Have Failed
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install IrfanView, run the following command from the command line or from PowerShell:
To upgrade IrfanView, run the following command from the command line or from PowerShell:
To uninstall IrfanView, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download irfanview --internalize --version=4.42.0.20160616 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade irfanview -y --source="'INTERNAL REPO URL'" --version="'4.42.0.20160616'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade irfanview -y --source="'INTERNAL REPO URL'" --version="'4.42.0.20160616'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install irfanview
win_chocolatey:
name: irfanview
version: '4.42.0.20160616'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'irfanview' do
action :install
source 'INTERNAL REPO URL'
version '4.42.0.20160616'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller irfanview
{
Name = "irfanview"
Version = "4.42.0.20160616"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'irfanview':
ensure => '4.42.0.20160616',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator gep13 on 23 Jun 2016.
IrfanView is a very fast, small, compact and innovative FREEWARE (for non-commercial use) graphic viewer.
Package Parameters
The following package parameters may be passed directly to the program's installer with the chocolatey option -params
:
/desktop
- create desktop shortcut for IrfanView/thumbs
- create desktop shortcut for IrfanView Thumbnails/group
- create IrfanView group in Start Menu/currentuser
- desktop/group links will only install for current user- `/assocallusers - set associations for all users (Windows XP only)
/assoc=VALUE
- set file associations; 0 = none (default), 1 = images only, 2 = select all/ini=PATH
- set custom INI file folder (system environment variables are allowed)/folder=PATH
- destination folder; if not indicated: old IrfanView folder is used, if not found, the "Program Files" folder is used
Package Specifics
If no parameters are passed, the following is assumed: --params '/assoc=0 /ini=%APPDATA%\IrfanView'
.
; default environment
DetectHiddenWindows, off
SetControlDelay, 20
; modified environment
#NoEnv
#NoTrayIcon
DetectHiddenText, off
SetTitleMatchMode, 2
; variables
winTitle = IrfanView Uninstall ahk_class #32770
WinWait, %winTitle%, Thank you for using, 180
ControlClick, Button1, %winTitle%, &Yes
WinWait, %winTitle%, IrfanView uninstalled, 180
ControlClick, Button1, %winTitle%, OK
ExitApp
$packageName = 'irfanview'
$softwareName = "$packageName *"
$installerType = 'exe'
$silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-'
$validExitCodes = @(0)
$scriptPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$ahkFile = Join-Path $scriptPath "chocolateyUninstall.ahk"
$ahkExe = 'AutoHotKey'
$ahkRun = "$Env:Temp\$(Get-Random).ahk"
Copy-Item $ahkFile "$ahkRun" -Force
Start-Process $ahkExe $ahkRun
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
$key | ForEach-Object {
Uninstall-ChocolateyPackage -PackageName $packageName `
-FileType $installerType `
-SilentArgs $($silentArgs) `
-File $($_.UninstallString.Replace('"','')) `
-ValidExitCodes $validExitCodes
}
Remove-Item "$ahkRun" -Force
Log in or click on link to see number of positives.
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
IrfanView (Install) 4.70.0 | 81896 | Friday, October 11, 2024 | Approved | |
IrfanView (Install) 4.67.0 | 292695 | Monday, April 15, 2024 | Approved | |
IrfanView (Install) 4.66.0 | 95431 | Wednesday, December 20, 2023 | Approved | |
IrfanView (Install) 4.62.0.20230706 | 122065 | Thursday, July 6, 2023 | Approved | |
IrfanView (Install) 4.62 | 124170 | Saturday, December 10, 2022 | Approved | |
IrfanView (Install) 4.60 | 126282 | Friday, March 25, 2022 | Approved | |
IrfanView (Install) 4.59 | 71710 | Tuesday, December 14, 2021 | Approved | |
IrfanView (Install) 4.58 | 120760 | Wednesday, May 26, 2021 | Approved | |
IrfanView (Install) 4.57 | 102364 | Saturday, January 30, 2021 | Approved | |
IrfanView (Install) 4.56 | 113820 | Wednesday, October 28, 2020 | Approved | |
IrfanView (Install) 4.54 | 173147 | Saturday, December 21, 2019 | Approved | |
IrfanView (Install) 4.53 | 103135 | Friday, May 31, 2019 | Approved | |
IrfanView (Install) 4.52 | 78790 | Saturday, December 15, 2018 | Approved | |
IrfanView (Install) 4.51 | 41204 | Monday, March 12, 2018 | Approved | |
IrfanView (Install) 4.50 | 33812 | Thursday, October 19, 2017 | Approved | |
IrfanView (Install) 4.44 | 70714 | Wednesday, January 4, 2017 | Approved | |
IrfanView (Install) 4.42.0.20161201 | 10866 | Thursday, December 1, 2016 | Approved | |
IrfanView (Install) 4.42.0.20161101 | 8940 | Tuesday, November 1, 2016 | Approved | |
IrfanView 4.42.0.20160616 | 21704 | Friday, June 17, 2016 | Approved | |
IrfanView 4.42 | 4069 | Friday, March 18, 2016 | Approved | |
IrfanView 4.41.0.20151207 | 4980 | Monday, December 7, 2015 | Approved | |
IrfanView 4.41 | 2070 | Wednesday, December 2, 2015 | Approved | |
IrfanView 4.40 | 1193 | Sunday, October 4, 2015 | Approved | |
IrfanView 4.38 | 11987 | Monday, November 3, 2014 | Approved | |
IrfanView 4.37 | 5022 | Wednesday, January 15, 2014 | Approved | |
IrfanView 4.35 | 1273 | Wednesday, June 19, 2013 | Approved | |
IrfanView 4.33.03 | 1088 | Monday, October 29, 2012 | Approved | |
IrfanView 4.33.02 | 541 | Monday, October 29, 2012 | Approved | |
IrfanView 4.33.01 | 833 | Thursday, April 26, 2012 | Approved | |
IrfanView 4.32.1 | 719 | Friday, January 27, 2012 | Approved |
© Irfan Skiljan
Ground Rules:
- This discussion is only about IrfanView and the IrfanView package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or IrfanView, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.