Skip to content

ARM64 setup

Olof Lagerkvist edited this page May 1, 2022 · 6 revisions

The installer on the website includes arm and arm64 versions, but the installer unfortunately does not work on arm or arm64 Windows versions. But you could workaround it by manually setting things up like this (assuming arm64):

Download http://ltr-data.se/files/imdiskinst.exe Extract it with 7-zip.

Copy sys\arm64\imdisk.sys and awealloc\arm64\awealloc.sys to C:\Windows\system32\drivers

Copy cpl\arm64\imdisk.cpl, cli\arm64\imdisk.exe and svc\arm64\imdsksvc.exe to C:\Windows\system32

Copy cpl\arm\imdisk.cpl and cli\arm\imdisk.exe to C:\Windows\sysarm32

Copy cpl\i386\imdisk.cpl and cli\i386\imdisk.exe to C:\Windows\syswow64

Then, create drivers and services:

sc create imdisk type= kernel error= ignore start= auto binPath= system32\drivers\imdisk.sys

sc create awealloc type= kernel error= ignore start= auto binPath= system32\drivers\awealloc.sys

sc create imdsksvc type= own error= ignore start= auto binPath= imdsksvc.exe

Then, start drivers and services:

net start imdisk

net start awealloc

net start imdsksvc

This should get everything up and running on arm64 versions of Windows!

Clone this wiki locally