windows-automation/ram_disk.bat

15 lines
336 B
Batchfile
Raw Normal View History

2023-09-18 13:25:07 +00:00
REM Run as administrator or else the disk will not be formatted.
@echo off
REM Set the desired drive letter and size for the RAM disk.
SET DriveLetter=R:
SET Size=10240M
REM Check if the drive is already mounted.
if exist %DriveLetter% goto End
REM Create the RAM disk.
imdisk -a -s %Size% -m %DriveLetter% -p "/fs:NTFS /q /y"
:End