How may I setup a RAM disk on my Windows 7 computer without using third-party software? There seems to be a lot of third-party applications that can do this, but I am wondering if this is something that Windows already provides, perhaps through the command line interface or Administrator controls, that is not as intuitive as a nice GUI. Thanks.
2 Answers
There is no ramdisk included with windows, you must use a 3rd party one.
They do have the source for a ramdisk in their Driver Development Kit that you could compile and install. But I would recommend going with a 3rd party solution as it will be much more robust than a quick SDK example (often example code will not be written with best practices because understandability is more important that perfect design when writing a example (whats the point of writing a example if your student is totally lost looking at it)).
- The link in this answer is broken. It should either be corrected or removed.Alex– Alex2022-10-19 05:34:11 +00:00Commented Oct 19, 2022 at 5:34
Check this out: RAMDISK, part of the Windows Driver Kit. I've never used it, but it looks a lot like the old MS-DOS .sys file that you could use to make Ramdisks. Let us know if it works!
- That is example code that must be complied, if you are going to download something I would recommend using something that has a community that you can ask for help (like a support forum) when something does not work right.Scott Chamberlain– Scott Chamberlain2012-05-11 14:29:29 +00:00Commented May 11, 2012 at 14:29
- The link in this answer is broken. It should either be corrected or removed.Alex– Alex2022-10-19 05:33:31 +00:00Commented Oct 19, 2022 at 5:33
- Checkout github.com/guidoreina/ramdisk: "This is a modified version of the RAM disk sample driver from Microsoft, so that it is functional."Gabriel Devillers– Gabriel Devillers2024-02-12 09:09:12 +00:00Commented Feb 12, 2024 at 9:09