Downloads:
283
Downloads of v 1.7.0:
283
Last Update:
04 Mar 2021
Package Maintainer(s):
Software Author(s):
- KellermanSoftware
Tags:
installer install builder build portable- Software Specific:
- Software Site
- Software License
- Software Mailing List
- Software Issues
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Installerific
- 1
- 2
- 3
1.7.0 | Updated: 04 Mar 2021
- Software Specific:
- Software Site
- Software License
- Software Mailing List
- Software Issues
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
283
Downloads of v 1.7.0:
283
Maintainer(s):
Software Author(s):
- KellermanSoftware
Installerific 1.7.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by KellermanSoftware. The inclusion of KellermanSoftware trademark(s), if any, upon this webpage is solely to identify KellermanSoftware goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Installerific, run the following command from the command line or from PowerShell:
To upgrade Installerific, run the following command from the command line or from PowerShell:
To uninstall Installerific, 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 installerific --internalize --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 installerific -y --source="'INTERNAL REPO URL'" [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 installerific -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install installerific
win_chocolatey:
name: installerific
version: '1.7.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'installerific' do
action :install
source 'INTERNAL REPO URL'
version '1.7.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller installerific
{
Name = "installerific"
Version = "1.7.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'installerific':
ensure => '1.7.0',
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.
This package was approved by moderator TheCakeIsNaOH on 04 Mar 2021.
Build Three Different Types of Installers
- It can create an entire installer package for Chocolatey.org and automatically submit it. It supports both external installers and embedded installers.
- It has the ability to create a Portable Application Installer for the PortableApps.com platform that can be used by any license type, including Commercial applications. It has the ability to automatically submit to the MorePortableApps.com commercial marketplace for free.
- It can create a standard Windows Installer exe to be used on any PC from Windows Vista to Windows 10.
$ErrorActionPreference = 'Stop'; # stop on all errors
$packageArgs = @{
packageName = $env:ChocolateyPackageName
softwareName = 'Installerific'
fileType = 'EXE'
silentArgs = "/qn /norestart"
validExitCodes= @(0, 3010, 1605, 1614, 1641)
}
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName $packageArgs['softwareName']
if ($key.Count -eq 1) {
$key | % {
$packageArgs['file'] = "$($_.UninstallString)"
Uninstall-ChocolateyPackage @packageArgs
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | % {Write-Warning "- $($_.DisplayName)"}
}
md5: 482423DAB148ED9DB70F63B1AD53B90E | sha1: 88CADA834ED7BADFCAFA43B8C3730CC5676FAFD1 | sha256: EB488BE0AEF9FFA87C55A60EDBBA67AA354D358F15B6B295323EA7D98F215671 | sha512: E07A4C4505F11A0BC140282B2A338EFC9E50824FA602C39AB578E22EF5420DCBCEA558F4306C72506F45DC33F070B4E0C0FFDF03DA4D0B3E445349461065DC26
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.1" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
</configuration>
From: https://www.kellermanstores.com/downloads/licensing/intstallerific-license.rtf
LICENSE
Kellerman Software END-USER LICENSE AGREEMENT FOR Installerific
Kellerman Software END-USER SOFTWARE LICENSE AGREEMENT
This End-User License Agreement ("EULA") pertains to Kellerman Software Copyrighted computer software (the "Software"). Please read the terms and conditions of this End-User License Agreement ("EULA") before installing or otherwise using the Software.
This End-User License Agreement ("EULA") is a legally enforceable contract between you ("Customer" or "you") and Kellerman Software. By clicking "I accept", installing, copying, or otherwise using any part of the Software or any associated media, any printed materials, or any "online" or electronic documentation, you agree to be bound by the terms of this EULA. If you do not agree to the terms of this EULA, promptly return the unused Software to your supplier for a full refund.
1. LICENSE GRANT
The Software and related documentation is licensed, not sold. Any rights not clearly and expressly granted to you under this EULA are reserved to Kellerman Software. Provided you have paid all applicable fees, registered the Software with Kellerman Software, and otherwise complied with this EULA, Kellerman Software grants you the following personal, non-exclusive, non-transferable, perpetual license with limited rights:
a. The Software may only be used by a single user per license purchased. The Software may be installed on workstations, laptops, and removable devices provided the Software is used ONLY by a licensed user. The Software may also be copied for archival purposes, provided the copy contains all of the original Software's proprietary notices.
b. You may not decompile, disassemble, extract or otherwise reverse engineer any of the Software. You shall not have the right to obtain or use any source code for the Software, nor copy, reproduce, disclose, rent, lease, loan, distribute or use the Software except as provided above.
c. Licensee may not assign or transfer his rights and duties under this license.
d. This license is granted perpetually, as long as you do not materially breach it.
2. WARRANTY
a. Licensor hereby warrants that The Software does not violate or infringe any 3rd party claims in regards to intellectual property, patents and/or trademarks and that to the best of its knowledge no legal action has been taken against it for any infringement or violation of any 3rd party intellectual property rights.
b. The Software is provided without any warranty; Licensor hereby disclaims any warranty that The Software shall be error free, without defects or code which may cause damage to Licensee’s computers or to Licensee, and that Software shall be functional. Licensee shall be solely liable to any damage, defect or loss incurred as a result of operating software and undertake the risks contained in running The Software on License’s Server[s] and Website[s].
c. Prior Inspection: Licensee hereby states that he inspected The Software thoroughly and found it satisfactory and adequate to his needs, that it does not interfere with his regular operation and that it does meet the standards and scope of his computer systems and architecture. Licensee found that The Software interacts with his development, website and server environment and that it does not infringe any of End User License Agreement of any software Licensee may use in performing his services. Licensee hereby waives any claims regarding The Software's incompatibility, performance, results and features, and warrants that he inspected the The Software.
3. TERMINATION
The license will terminate automatically if you fail to comply with the terms, conditions, or limitations contained in this EULA, including the payment of applicable license or other fees. You may terminate this EULA at any time (with no obligation on the part of Kellerman Software) by destroying all copies of the Software, deleting any copies of the Software from your hard drives or other media ceasing all use of the Software and documentation; and providing satisfactory proof to Kellerman Software that you have done so. The disclaimer of warranty and limitations on liability shall continue in force even after your rights to use the Software are terminated.
4. DEMO OR EVALUATION VERSIONS
If Kellerman Software designates the Software as a "Demo" or "Evaluation" version, you may use the Software solely for evaluation purposes for a 30-day period. Use of the Software and/or documentation beyond the 30-day evaluation period violates Kellerman Software' rights, as described above, including but not limited to Kellerman Software' rights under the United States Copyright Act. You acknowledge that any Demo or Evaluation version is merely a technology demonstration that may not be at the level of performance or compatibility of generally available Kellerman Software' products. Demo or Evaluation versions are provided strictly on an "as is" basis and are subject to Section 2 above.
5. UPGRADES
If the Software is designated by Kellerman Software as an Upgrade product, you may only use the Software if you are also currently a licensed user of the base product to which the Upgrade applies. Unless the Kellerman Software documentation for an Upgrade specifically provides, you shall not separate upgrade products from base products, nor transfer them separately. Kellerman Software reserves the sole and exclusive right to set its policies and prices regarding updates, upgrades and enhancements. All other terms of this EULA apply with equal force to any such Upgrades.
6. INDEMNIFICATION
Licensee hereby warrants to hold Licensor harmless and indemnify Licensor for any lawsuit brought against it in regards to Licensee’s use of The Software in means that violate, breach or otherwise circumvent this license, Licensor's intellectual property rights or Licensor's title in The Software. Licensor shall promptly notify Licensee in case of such legal action and request Licensee’s consent prior to any settlement in relation to such lawsuit or claim.
7. GOVERNING LAW, JURISDICTION
Licensee hereby agrees not to initiate class-action lawsuits against Licensor in relation to this license and to compensate Licensor for any legal fees, cost or attorney fees should any claim brought by Licensee against Licensor be denied, in part or in full.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
We own this Kellerman Software product: https://kellermansoftware.com/products/installerific
Log in or click on link to see number of positives.
- Installerific_Chocolatey.exe (5f7147abc0de) - ## / 70
- installerific.1.7.0.nupkg (2f68c6638bf0) - ## / 63
- Installerific_Chocolatey.exe (411f04beb2d0) - ## / 67
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.
Copyright 2017 Kellerman Software
Fixes for Chocolatey Shortcuts, support for Chocolatey Dependencies when building a Chocolatey Installer. Support for Chocolatey External Installers.
-
- dotnet4.6 (≥ 4.6)
- netfx-4.6-devpack (≥ 4.6.81)
- windows-sdk-10.0 (≥ 10.0.26624)
- visualstudio2017buildtools (≥ 15.9.31)
Ground Rules:
- This discussion is only about Installerific and the Installerific 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 Installerific, 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.