Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

127,554

Downloads of v 20.03.15:

506

Last Update:

15 Mar 2020

Package Maintainer(s):

Software Author(s):

  • LTR Data
  • Olof Lagerkvist
  • v77

Tags:

ram disk tool utility driver admin

ImDisk-Toolkit

This is not the latest version of ImDisk-Toolkit available.

  • 1
  • 2
  • 3

20.03.15 | Updated: 15 Mar 2020

Downloads:

127,554

Downloads of v 20.03.15:

506

Maintainer(s):

Software Author(s):

  • LTR Data
  • Olof Lagerkvist
  • v77

ImDisk-Toolkit 20.03.15

This is not the latest version of ImDisk-Toolkit available.

  • 1
  • 2
  • 3

Some Checks Have Failed or Are Not Yet Complete

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Resulted in Flagged:

This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.

We recommend clicking the "Details" link to make your own decision on installing this package.

Details
Package Approved

This package was approved as a trusted package on 15 Mar 2020.

WARNING

This package is unlisted and hidden from package listings.

Description

Here is the ImDisk Toolkit. This tool will let you mount image files of hard drive, cd-rom or floppy, and create one or several RamDisks with various parameters.


legal\LICENSE.txt
  General License for Open Source projects published by
  Olof Lagerkvist - LTR Data.

    Copyright (c) Olof Lagerkvist
    http://www.ltr-data.se
    [email protected]

  The above copyright notice shall be included in all copies or
  substantial portions of the Software.

    Permission is hereby granted, free of charge, to any person
    obtaining a copy of this software and associated documentation
    files (the "Software"), to deal in the Software without
    restriction, including without limitation the rights to use,
    copy, modify, merge, publish, distribute, sublicense, and/or
    sell copies of the Software, and to permit persons to whom the
    Software is furnished to do so, subject to the following
    conditions:

  As a discretionary option, the above permission notice may be
  included in copies or substantial portions of the Software.

    THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
    EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
    OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
    HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
    OTHER DEALINGS IN THE SOFTWARE.
legal\VERIFICATION.txt
VERIFICATION

Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.

Package can be verified like this:

1. Go to

   x32: https://sourceforge.net/projects/imdisk-toolkit/files/20200315/ImDiskTk.exe/download
   x64: https://sourceforge.net/projects/imdisk-toolkit/files/20200315/ImDiskTk-x64.exe/download

   to download the installer.

2. You can use one of the following methods to obtain the SHA256 checksum:
   - Use powershell function 'Get-FileHash'
   - Use Chocolatey utility 'checksum.exe'

   checksum32: EBFFBAC86FC3367B0B19CA56BC37F69F1A3540AE27AA748D27FE492CE16C769E
   checksum64: D77F8B06496CDADCE4520B7B233D10E1FBCD2292CC09BD51EAAC6D5467D79D3A


File 'LICENSE.txt' is obtained from:
    http://www.ltr-data.se/files/license.txt
tools\chocolateyInstall.ps1
$ErrorActionPreference = 'Stop'

$toolsPath = Split-Path $MyInvocation.MyCommand.Definition

$packageArgs = @{
  packageName    = 'ImDisk-Toolkit'
  softwareName   = 'imdisk-toolkit*'
  fileType       = 'exe'
  file           = gi $toolsPath\*_x32.exe
  file64         = gi $toolsPath\*_x64.exe
  silentArgs     = '/fullsilent'
  validExitCodes = @(0)
}
Install-ChocolateyInstallPackage @packageArgs
ls $toolsPath\*.exe | % { rm $_ -ea 0; if (Test-Path $_) { sc "$_.ignore" "" }}

$packageName = $packageArgs.packageName
$installLocation = Get-AppInstallLocation $packageName
if (!$installLocation)  { Write-Warning "Can't find $packageName install location"; return }
Write-Host "$packageName installed to '$installLocation'"

Register-Application "$installLocation\$packageName.exe"
Write-Host "$packageName registered as $packageName"
tools\chocolateyUninstall.ps1
$packageName = 'imdisk-toolkit'
$fileType = 'exe'
$silentArgs = " /silentuninstall"
$uninstall = Get-UninstallRegistryKey -softwareName "ImDisk Toolkit"

Uninstall-ChocolateyPackage -packageName $packageName -fileType $fileType -silentArgs $silentArgs -file $uninstall.UninstallString.TrimEnd("/u").replace('"','')
tools\ImDiskTk_x32.exe
md5: 6D212622B5ED7E8BA99100E6C1A0E7FA | sha1: 6911ED7706C417E747DEB176338FE718A3D2CAE1 | sha256: EBFFBAC86FC3367B0B19CA56BC37F69F1A3540AE27AA748D27FE492CE16C769E | sha512: 9D52C5A35E195EAC96E351246D015054B4D9AFC938C57B348CD7C2248B8DC85D8D9D534C13CD225A5BC7D1FE3B964DB0334729F8BBCDAA8467704005992F5D78
tools\ImDiskTk_x64.exe
md5: D3EBD8ED390C44E3271A91E5191D1557 | sha1: 7050D9D90F7F7FCFF6B68446A0CEF891BE559F4E | sha256: D77F8B06496CDADCE4520B7B233D10E1FBCD2292CC09BD51EAAC6D5467D79D3A | sha512: EFE7783C621FE61995089FAADABF708F4EE11495BFF1D62B8C7222B3D7440138220D5F707144ABF435B82CA951A97C6793E9D886F8979BDE66FD161882AB74D9

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
ImDisk-Toolkit 24.01.13 2790 Saturday, January 13, 2024 Approved
ImDisk-Toolkit 23.12.31 1451 Sunday, December 31, 2023 Approved
ImDisk-Toolkit 22.08.26 58768 Friday, August 26, 2022 Approved
ImDisk-Toolkit 22.08.07 609 Sunday, August 7, 2022 Approved
ImDisk-Toolkit 22.03.01 1500 Tuesday, March 1, 2022 Approved
ImDisk-Toolkit 21.11.03 1292 Wednesday, November 3, 2021 Approved
ImDisk-Toolkit 21.01.25 16114 Monday, January 25, 2021 Approved
ImDisk-Toolkit 20.11.20 5282 Friday, November 20, 2020 Approved
ImDisk-Toolkit 20.07.27 7204 Monday, July 27, 2020 Approved
ImDisk-Toolkit 20.06.09.20200714 854 Tuesday, July 14, 2020 Approved
ImDisk-Toolkit 20.06.09 3844 Tuesday, June 9, 2020 Approved
ImDisk-Toolkit 20.4.12 622 Tuesday, May 5, 2020 Approved
ImDisk-Toolkit 19.11.26 1273 Tuesday, November 26, 2019 Approved
ImDisk-Toolkit 19.06.29 1057 Saturday, June 29, 2019 Approved
ImDisk-Toolkit 19.4.19.20190427 823 Saturday, April 27, 2019 Approved
ImDisk-Toolkit 19.04.19 387 Friday, April 19, 2019 Approved
ImDisk-Toolkit 19.04.07 531 Sunday, April 7, 2019 Approved
ImDisk-Toolkit 19.01.30 911 Wednesday, January 30, 2019 Approved
ImDisk-Toolkit 18.12.21 690 Friday, December 21, 2018 Approved
ImDisk-Toolkit 18.09.17 1626 Monday, September 17, 2018 Approved
ImDisk-Toolkit 17.07.06 2640 Thursday, July 6, 2017 Approved
ImDisk-Toolkit 17.04.07 961 Friday, April 7, 2017 Approved
ImDisk-Toolkit 16.12.31.20170227 630 Monday, February 27, 2017 Approved
ImDisk-Toolkit 16.12.31 805 Sunday, January 1, 2017 Approved
ImDisk-Toolkit 16.12.30 400 Friday, December 30, 2016 Approved
ImDisk-Toolkit 16.12.04 553 Monday, December 5, 2016 Approved
ImDisk-Toolkit 16.11.20.20161124 434 Thursday, November 24, 2016 Approved
ImDisk-Toolkit 16.11.20 623 Sunday, November 20, 2016 Approved
ImDisk-Toolkit 16.11.05.20161105 475 Saturday, November 5, 2016 Approved
ImDisk-Toolkit 16.11.05 416 Saturday, November 5, 2016 Approved
ImDisk-Toolkit 16.10.25 410 Tuesday, October 25, 2016 Approved
ImDisk-Toolkit 16.10.21 418 Friday, October 21, 2016 Approved
ImDisk-Toolkit 16.10.17 442 Tuesday, October 18, 2016 Approved
ImDisk-Toolkit 16.10.05 485 Wednesday, October 5, 2016 Approved
ImDisk-Toolkit 16.09.17 568 Wednesday, September 21, 2016 Approved
ImDisk-Toolkit 16.09.08 482 Thursday, September 8, 2016 Approved
ImDisk-Toolkit 16.7.29.20160824 512 Wednesday, August 24, 2016 Approved
ImDisk-Toolkit 16.07.29 448 Friday, July 29, 2016 Approved
ImDisk-Toolkit 16.07.26 487 Tuesday, July 26, 2016 Approved
ImDisk-Toolkit 16.02.02.160708 418 Friday, July 8, 2016 Approved
ImDisk-Toolkit 16.02.02 554 Wednesday, February 3, 2016 Approved
ImDisk-Toolkit 15.12.13 514 Saturday, December 19, 2015 Approved
ImDisk-Toolkit 15.11.22 474 Saturday, December 19, 2015 Approved
Discussion for the ImDisk-Toolkit Package

Ground Rules:

  • This discussion is only about ImDisk-Toolkit and the ImDisk-Toolkit 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-Toolkit, 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.
comments powered by Disqus