You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+55-1Lines changed: 55 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,8 @@ Thanks to user `lazychris2000` here is a short instruction how to install the Ar
40
40
41
41
```
42
42
c:
43
-
cd \arsenal\cli\x64\aim_ll.exe --install ..\..
43
+
cd \arsenal\cli\x64
44
+
aim_ll.exe --install ..\..
44
45
45
46
```
46
47
@@ -67,6 +68,59 @@ Finished successfully.
67
68
You will need Delphi 7 and TNT-Unicode in order to compile the source code of **RamDiskUI** - or you can simply download the binary release.
68
69
All pull requests are welcome.
69
70
71
+
## Explanation of the registry values
72
+
73
+
The RAM-disk UI (not the Arsenal driver) creates several registry values which are then picked up by the RAM-disk service (not in real-time unfortunately - only on **start** or **restart** of the service).
74
+
They are created under `[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ArsenalRamDisk]` and are explained below:
75
+
76
+
-`DiskSize` is the size in bytes
77
+
-`DriveLetter` is obvious
78
+
-`LoadContent` is path to a folder whose contents will be pre-loaded in the RAM-disk at startup
79
+
-`ExcludeFolders` is StringList (lines delimited with CRLF) which specifies which folder names from the RAM-disk won't be saved on shutdown in the folder specified by `LoadContent`. I usually create numeric folders in my RAM-disk for my daily projects - but I don't want them to be persisted on disk because I can pull them with Git every morning.
80
+
-`UseTempFolder` whether to create TEMP folder on RAM-disk and point the OS to this temp folder
81
+
-`SyncContent` whether to save RAM-disk content on shutdown to the folder specified by `LoadContent`
82
+
-`DeleteOld` whether to delete those files and folders from `LoadContent` which are not present on the RAM-disk on shutdown (meaningful only when `SyncContent` is TRUE)
0 commit comments