Downloads:
94,594
Downloads of v 1.9.4.20150620:
544
Last Update:
20 Jun 2015
Package Maintainer(s):
Software Author(s):
- Olof Lagerkvist
Tags:
imdisk admin virtual disk drive image iso- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
ImDisk Virtual Disk Driver
This is not the latest version of ImDisk Virtual Disk Driver available.
- 1
- 2
- 3
1.9.4.20150620 | Updated: 20 Jun 2015
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
94,594
Downloads of v 1.9.4.20150620:
544
Maintainer(s):
Software Author(s):
- Olof Lagerkvist
ImDisk Virtual Disk Driver 1.9.4.20150620
This is not the latest version of ImDisk Virtual Disk Driver available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Olof Lagerkvist. The inclusion of Olof Lagerkvist trademark(s), if any, upon this webpage is solely to identify Olof Lagerkvist goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install ImDisk Virtual Disk Driver, run the following command from the command line or from PowerShell:
To upgrade ImDisk Virtual Disk Driver, run the following command from the command line or from PowerShell:
To uninstall ImDisk Virtual Disk Driver, 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 imdisk --internalize --version=1.9.4.20150620 --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 imdisk -y --source="'INTERNAL REPO URL'" --version="'1.9.4.20150620'" [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 imdisk -y --source="'INTERNAL REPO URL'" --version="'1.9.4.20150620'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install imdisk
win_chocolatey:
name: imdisk
version: '1.9.4.20150620'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'imdisk' do
action :install
source 'INTERNAL REPO URL'
version '1.9.4.20150620'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller imdisk
{
Name = "imdisk"
Version = "1.9.4.20150620"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'imdisk':
ensure => '1.9.4.20150620',
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 ferventcoder on 20 Dec 2015.
ImDisk is a virtual disk driver for Windows NT/2000/XP/Vista/7/8/8.1 or Windows Server 2003/2008/2012. It can create virtual hard disk, floppy or CD/DVD drives using image files or system memory.
# stop on all errors
$ErrorActionPreference = 'Stop';
$packageName = 'imdisk'
# registry uninstaller key name is the key that is found at HKLM:\Software\Windows\CurrentVersion\Uninstall\ THE NAME
$registryUninstallerKeyName = 'imdisk' #ensure this is the value in the registry
$shouldUninstall = $true
$local_key = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
# local key 6432 probably never exists
$local_key6432 = "HKCU:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
$machine_key = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
$machine_key6432 = "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$registryUninstallerKeyName"
function Resolve-Path {
param ($file)
(".;" + $env:PATH).Split(";") | ForEach-Object {
$testPath = Join-Path $_ $file
if (Test-Path $testPath) {
return $testPath
}
}
}
$file = @($local_key, $local_key6432, $machine_key, $machine_key6432) `
| ?{ Test-Path $_ } `
| Get-ItemProperty `
| Select-Object -ExpandProperty UninstallString
if ($file -eq $null -or $file -eq '') {
Write-Host "$packageName has already been uninstalled by other means."
$shouldUninstall = $false
}
$file = Resolve-Path $file
$installerType = 'exe'
$silentArgs = '-y'
$validExitCodes = @(0)
if (!(Test-Path $file)) {
Write-Host "$packageName has already been uninstalled by other means."
$shouldUninstall = $false
}
if ($shouldUninstall) {
$installOverride = $env:chocolateyInstallOverride
if (!$installOverride) {
$env:IMDISK_SILENT_SETUP = 1
Write-Host "Silent mode set"
}
# Detach all virtual disks
$exeToRun = 'cmd.exe'
$statements = '/s /c "if exist "%SystemRoot%\system32\imdisk.exe" for /f %a in (''imdisk -l -n'') do @imdisk -D -u %~a"'
Start-ChocolateyProcessAsAdmin $statements $exeToRun
Uninstall-ChocolateyPackage -PackageName $packageName -FileType $installerType -SilentArgs $silentArgs -validExitCodes $validExitCodes -File $file
}
Log in or click on link to see number of positives.
- imdiskinst_2.0.9.exe (11a0d1c855c7) - ## / 58
- imdisk.1.9.4.20150620.nupkg (856bb17fec1e) - ## / 56
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 |
---|---|---|---|---|
ImDisk Virtual Disk Driver 2.1.1 | 36322 | Sunday, November 7, 2021 | Approved | |
ImDisk Virtual Disk Driver 2.0.10.20181231 | 36844 | Monday, December 31, 2018 | Approved | |
ImDisk Virtual Disk Driver 2.0.10 | 1973 | Sunday, December 2, 2018 | Approved | |
ImDisk Virtual Disk Driver 2.0.9.20170202 | 6874 | Thursday, February 2, 2017 | Approved | |
ImDisk Virtual Disk Driver 2.0.9.20160815 | 3468 | Monday, August 15, 2016 | Approved | |
ImDisk Virtual Disk Driver 2.0.9 | 3492 | Saturday, January 2, 2016 | Approved | |
ImDisk Virtual Disk Driver 2.0.6 | 536 | Saturday, November 7, 2015 | Approved | |
ImDisk Virtual Disk Driver 1.9.4.20150620 | 544 | Saturday, June 20, 2015 | Approved | |
ImDisk Virtual Disk Driver 1.9.4 | 525 | Saturday, April 4, 2015 | Approved | |
ImDisk Virtual Disk Driver 1.8.4 | 2498 | Friday, August 8, 2014 | Approved | |
ImDisk Virtual Disk Driver 1.7.6 | 890 | Saturday, November 9, 2013 | Approved | |
ImDisk Virtual Disk Driver 1.7.5 | 628 | Friday, June 28, 2013 | Approved |
Copyright © 2004-2015 Olof Lagerkvist
See all - http://www.ltr-data.se/opencode.html/changelog.html
ImDisk Virtual Disk Driver 1.9.4.
- Fixed bug in awealloc driver that appeared in version 1.9.3. This bug made it impossible to use physical RAM as storage for virtual disks.
ImDisk Virtual Disk Driver 1.9.3.
- Uninstall script now shows Control Panel applet if there are any existing drives that can be removed by user. If devices exist that are already in the process of being removed, uninstall carries on and may ask for reboot at the end.
- Corrected bug in command line tool. The -m #: syntax did not work if it appeared before -a on the command line.
- Fixed bug that could cause image file saving to fail. This happened when dismounting a memory backed disk from Explorer context menu and this disk had been created without using an image file.
- Symbolic links are now created for each ImDisk device. Device number 0 can be opened using path \?\ImDisk0 from a Win32 application.
Bugfix release 1.9.2 of ImDisk Virtual Disk Driver.
- Data corruption could occur when loading large disk images into virtual memory on Windows XP and older Windows versions. Thanks to v77 for reporting this bug.
Bugfix release 1.9.1 of ImDisk Virtual Disk Driver.
- There was a problem related to drive letters when mounting drives in Control Panel applet in 32 bit version of ImDisk Virtual Disk Driver 1.9.0. Thanks to v77 for reporting this bug.
Release 1.9.0 of ImDisk Virtual Disk Driver.
- AWEAlloc: "Error" event log records changed severity level to "Information".
- AWEAlloc: Possible performance reducing code path corrected in AWEAlloc. Page mapping function had a local unwind from exception protection code. Some tests show that AWEAlloc memory disk access performance has increased by around 4-5 %.
- ImDisk virtual disk objects now support ZwQueryInformationFile/FileStandardInformation to query size as file size.
- devio.exe 3.03: Supports --novhd switch to disable dynamic vhd file detection.
- devio.exe 3.03: Safer detection of dynamic vhd format (no longer detects diff format).
- ImDisk "raw" (non-disk) mode now supports file pointer requests to emulate one single file volume.
- Added a few more security checks to various function calls in ImDisk and AWEAlloc.
- ImDisk now ignores any errors when attempting to read volume boot record to auto-detect geometry parameters.
- ImDisk source code: Cleaned up annotations and debug asserts.
- ImDisk API: New API functions for manually sending shell notifications for arrived or removed drive letters.
- ImDisk, fixed bug: Notifications on drive removal did not remove MountPoints/MountPoints2 registry keys.
- Fixed missing function exports in "core version" of imdisk.cpl.
Release 1.8.5 of ImDisk Virtual Disk Driver.
- Update/install scripts now make sure to kill any existing helper service process before updating any files. Hopefully this solves most of the cases where reboot have been needed after uninstall/upgrade.
- API library change. When IMDISK_API_NO_BROADCAST_NOTIFY is active, create and remove routines now pass the DDD_NO_BROADCAST_SYSTEM flag to DefineDosDevice (on Windows 2000 or later).
- Fixed some typos in help texts. Thanks to "v77".
- Kernel driver change. Device threads now use NtReadFile/NtWriteFile instead of ZwReadFile/ZwWriteFile when reading and writing image files directly. This change is to improve performance and reduce risks for resource deadlocks in filesystem drivers.
This package has no dependencies.
Ground Rules:
- This discussion is only about ImDisk Virtual Disk Driver and the ImDisk Virtual Disk Driver 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 ImDisk Virtual Disk Driver, 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.