dokanx
dokanx copied to clipboard
user-mode filesystem framework for Windows
dokanx.sys support 64bit driver. But other user mode executable and libraries can't be built under 64bit environment yet.
Eventually signed drivers are going to be needed: Here's a potential workaround for a while: https://github.com/koush/UniversalAdbDriver/blob/master/UniveralAdbDriverInstaller/Program.cs Basically, create a certificate that's distributed with an installer. Before the driver is installed,...
Any plans to fork dokan_net as well?
Hi everyone. Here is the thing (on Win8.1 Pro, x64, latest available dokanx build): 1. Install dokanx. 2. Run "mirrorfs /t 1 /r c: /l z" (I tested on 1-thread...
After commit 49d90163a32afe680da121848e1dfbecdf10d0df dokanx.dll requires presence of ProcMonDebugOutputx64.dll or ProcMonDebugOutputWin32.dll (depending on platform). Could you please either add reference about this dll into installation manual or (if possible) make it...
I made a `feature/sshfs` branch to try maintaining `sshfs`. Although I am not sure I can maintain this code, I will try it. Please give me your opinion or pull...
Process Monitor can see filesystem drivers irps and prints them on his viewer. It can be NTFS or FAT32 or even CIFS(samba), except Irps on dokanx volume. This is very...
Making better logger is most important part to maintain dokanx. To be better logger, it can print to not only DebugView but also Process Monitor. Because Process Monitor catches and...
On a Win7 machine: 1) Install DokanX 2) Install wdk7600 3) Start mirrorfs and make it serve volume M: 4) Copy any of the samples under wdk's \src directory to...
Is it possible to make some kind of low level API to allow integration of parts of DokanMain into some larger (custom?) main loop? Could you make one? I've already...