Downloads:
766
Downloads of v 1.0.20:
295
Last Update:
15 Apr 2024
Package Maintainer(s):
Software Author(s):
- iventoy.com
Tags:
iventoy pxe boot network ipxe f12- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
iVentoy
- 1
- 2
- 3
1.0.20 | Updated: 15 Apr 2024
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
766
Downloads of v 1.0.20:
295
Maintainer(s):
Software Author(s):
- iventoy.com
iVentoy 1.0.20
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by iventoy.com. The inclusion of iventoy.com trademark(s), if any, upon this webpage is solely to identify iventoy.com goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install iVentoy, run the following command from the command line or from PowerShell:
To upgrade iVentoy, run the following command from the command line or from PowerShell:
To uninstall iVentoy, 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 iventoy --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 iventoy -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 iventoy -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 iventoy
win_chocolatey:
name: iventoy
version: '1.0.20'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'iventoy' do
action :install
source 'INTERNAL REPO URL'
version '1.0.20'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller iventoy
{
Name = "iventoy"
Version = "1.0.20"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'iventoy':
ensure => '1.0.20',
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 Windos on 16 Apr 2024.
Summary
- iVentoy is an enhanced version of the PXE server.
- With iVentoy you can boot and install OS on multiple machines at the same time through the network.
- iVentoy is extremely easy to use, without complicated configuration, just put the ISO file in the specified location and select PXE boot in the client machine.
- iVentoy supports x86 Legacy BIOS, IA32 UEFI, x86_64 UEFI and ARM64 UEFI mode at the same time.
- iVentoy supports 110+ common types of OS (Windows/WinPE/Linux/VMware).
Features
- Simple to use Get Started
- Cross-platform, can run in both Windows and Linux.
- Specially optimized for PXE scenarios, with flexible functions.
- Directly boot ISO files, no extraction needed.
- Native boot menu style for Legacy & UEFI
- Directory layout corresponded boot menu.
- Supports Legacy BIOS and IA32/X86_64/ARM64 UEFI mode.
- Supports 110+ common types of OS (Windows/WinPE/Linux/VMware)
- System or ISO level boot password protection.
- Multiple devices to install different OSs at the same time.
- Device filtering by MAC address.
- Support querying MAC address filtering status.
- Support MAC address attribution query.
- Client device information. (Manufacture, product name etc.)
- Directly get ISO internal files with HTTP. Notes
- File Injection feature. Notes
- Windows auto installation supported. Notes
- Linux auto installation supported. Notes
- Variables Expansion supported for install script Notes
- Automatically solve the driver missing during Linux installation.
See iventoy.com for details.
Package Note
Starting with version 1.0.20
, iVentoy will now be installed to $env:ChocolateyInstall\lib\iventoy
. This change was made because Chocolatey is intended to be used in a multi-user environment. Before this version, the package installation script was placing iVentoy in $env:LocalAppData\iventoy
, which is limited to the current user only.
iso folder moved: The iso
folder will be moved to this new location and will not be deleted.
iso folder retention on uninstall: If you choose to uninstall iVentoy, the iso
folder will not be deleted.
$ErrorActionPreference = "Stop";
# Stop-Process won't error if the process doesn't exist
Get-Process iVentoy_32 -ErrorAction SilentlyContinue | Stop-Process -ErrorAction Stop
Get-Process iVentoy_64 -ErrorAction SilentlyContinue | Stop-Process -ErrorAction Stop
$ErrorActionPreference = "Stop"
$packageName = "iventoy"
# Set new install location to $env:ChocolateyInstall\lib\iventoy - implemented April 2024
$unzipLocation = [System.IO.Path]::Combine($env:ChocolateyInstall, "lib", $packageName)
$isoPath = Join-Path $unzipLocation "iso"
# Array of shortcut locations
$shortcutFolders = @([Environment]::GetFolderPath("Programs"), [Environment]::GetFolderPath("Desktop"))
$shortcutNames = @('iVentoy', 'iVentoy ISOs')
# Remove shortcuts from Programs and Desktop
foreach ($folder in $shortcutFolders) {
foreach ($name in $shortcutNames) {
$targetPath = Join-Path $folder "$name.lnk"
if (Test-Path $targetPath) {
Remove-Item -Path $targetPath -ErrorAction SilentlyContinue
}
}
}
# Check if the iso folder is empty before taking action
if (Test-Path $unzipLocation) {
$isoContents = Get-ChildItem -Path $isoPath -Recurse
if ($isoContents) {
# iso folder contains data, remove everything except the iso folder
Get-ChildItem -Path $unzipLocation -Recurse -Exclude "iso" |
Where-Object { -not $_.FullName.StartsWith($isoPath, [System.StringComparison]::OrdinalIgnoreCase) } |
ForEach-Object {
try {
# Write-Output "Removing item: $($_.FullName)"
Remove-Item -Path $_.FullName -Force -Recurse -ErrorAction Stop
} catch {
Write-Output "Error removing item: $($_.Exception.Message)"
}
}
} else {
# iso folder is empty, remove the entire iventoy directory
try {
Remove-Item -Path $unzipLocation -Recurse -Force -ErrorAction Stop
} catch {
Write-Output "Error removing directory ${unzipLocation}: $($_.Exception.Message)"
}
}
}
Log in or click on link to see number of positives.
- iventoy-1.0.20-win64-free.zip (be41a256b44c) - ## / 65
- iventoy-1.0.20-win32-free.zip (0c7a81ff54b7) - ## / 65
- iventoy.1.0.20.nupkg (d05d61ce8cd1) - ## / 61
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 |
---|---|---|---|---|
iVentoy 1.0.20 | 295 | Monday, April 15, 2024 | Approved | |
iVentoy 1.0.19 | 225 | Thursday, September 14, 2023 | Approved | |
iVentoy 1.0.18 | 75 | Monday, August 14, 2023 | Approved | |
iVentoy 1.0.17 | 53 | Friday, August 4, 2023 | Approved | |
iVentoy 1.0.6 | 87 | Saturday, July 1, 2023 | Approved |
Copyright © 2020-2023 longpanda
This package has no dependencies.
Ground Rules:
- This discussion is only about iVentoy and the iVentoy 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 iVentoy, 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.