Downloads:
995
Downloads of v 1.0.21:
11
Last Update:
07 May 2025
Published Date:
07 May 2025
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
(Ready for review)
- 1
- 2
- 3
1.0.21 | Updated: 07 May 2025
- 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:
995
Downloads of v 1.0.21:
11
Published:
07 May 2025
Maintainer(s):
Software Author(s):
- iventoy.com
iVentoy 1.0.21
(Ready for review)
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
All Checks are Passing
3 Passing Tests
This version is in moderation and has not yet been approved. This means it doesn't show up under normal search.
- Until approved, you should consider this package version unsafe - it could do very bad things to your system (it probably doesn't but you have been warned, that's why we have moderation).
- This package version can change wildly over the course of moderation until it is approved. If you install it and it later has changes to this version, you will be out of sync with any changes that have been made to the package. Until approved, you should consider that this package version doesn't even exist.
- You cannot install this package under normal scenarios. See How to install package version under moderation for more information.
- There are also no guarantees that it will be approved.
There are versions of this package awaiting moderation (possibly just this one). See the Version History section below.
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.21.nupkg (e2c971f3e368) - ## / 64
- iventoy-1.0.21-win64-free.zip (dca3225b366a) - ## / 65
- iventoy-1.0.21-win32-free.zip (d7acf90265d5) - ## / 68
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.21 | 11 | Wednesday, May 7, 2025 | Ready | |
iVentoy 1.0.20 | 433 | Monday, April 15, 2024 | Approved | |
iVentoy 1.0.19 | 238 | Thursday, September 14, 2023 | Approved | |
iVentoy 1.0.18 | 96 | Monday, August 14, 2023 | Approved | |
iVentoy 1.0.17 | 71 | Friday, August 4, 2023 | Approved | |
iVentoy 1.0.6 | 112 | 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.
asheroto (maintainer) on 07 May 2025 14:00:51 +00:00:
User 'asheroto' (maintainer) submitted package.
chocolatey-ops (reviewer) on 07 May 2025 14:36:44 +00:00:
iventoy has passed automated validation. It may have or may still fail other checks like testing (verification).
Congratulations! This package passed automatic validation review without flagging on any issues the validator currently checks. A human review could still turn up issues a computer may not easily find.
chocolatey-ops (reviewer) on 07 May 2025 19:12:56 +00:00:
iventoy has passed automated package testing (verification). The next step in the process is package scanning.
Please visit https://gist.github.com/choco-bot/8c6c81d1a3f31707471d0e67a8fd1d6d for details.
This is an FYI only. There is no action you need to take.
chocolatey-ops (reviewer) on 07 May 2025 19:26:41 +00:00:
iventoy has passed automated virus scanning.