![]() |
#1
|
|||
|
|||
![]()
I was set to make DCG work with 4.14. The issue with 4.14 is that if it detects an .exe file that is foreign, it doesn't open, so, what do we do? We rename said exe files to ._exe, and then name them back. As manually doing this can get tiresome, I did a little batch file. Just open notepad, copy and paste and save with a .bat extension, in the same folder as your Il-2 installation
Then, shortcut to desktop and you're set to go So, for example, with DCG, I did this: Code:
Ren "dgen.exe" "dgen._exe" timeout /t 1 /nobreak start il2fb.exe timeout /t 8 /nobreak Ren "dgen._exe" "dgen.exe" If I had MAT manager, and I needed to have a il2.exe file besides il2fb.exe, I would do Code:
Ren "il2.exe" "il2._exe" timeout /t 1 /nobreak start il2fb.exe timeout /t 8 /nobreak Ren "il2._exe" "il2.exe" If I had both, DCG DGen and MAT Manager, just rename both files Code:
Ren "dgen.exe" "dgen._exe" Ren "il2.exe" "il2._exe" timeout /t 1 /nobreak start il2fb.exe timeout /t 8 /nobreak Ren "dgen._exe" "dgen.exe" Ren "il2._exe" "il2.exe" The syntax for renaming is Code:
Ren "originalfile.exe" "originalfile._exe" and then, to rename back Code:
Ren "originalfile._exe" "originalfile.exe" that way, you can inclued as many .exe files as you want. Note: the Code:
timeout /t 8 /nobreak More info on DCG here Of course, you can also add .dll files. If you have issues with this or any doubts, I don't care...nah, just write them down here. I would prefer that you write your doubts here instead of messaging me, so everyone benefits if they have similar issues. |
|
|