There's a known problem when using executables with Mod Organizer and programs like NifSkope where you can't associate files to the internal executable.
My solution is pretty straight forward: pass the arguments forward.
That is, currently ModOrganizer.exe takes the first argument and executes it after applying* the internal virtual file system. My solution is to just forward the following arguments to the executable. Then, a user could associate a batch file to the desired extension as follows:
@echo off
C:\Games\ModOrganizer\ModOrganizer.exe "C:\Games\ModOrganizer\mods\NifSkope\NifSkope\NifSkope.exe" %1
This will cleanly pass the first argument. It's even possible to pass all arguments forward using:
@echo off
C:\Games\ModOrganizer\ModOrganizer.exe "C:\Games\ModOrganizer\mods\NifSkope\NifSkope\NifSkope.exe" %*
Anyhow, that's just my two cents.
Thanks
* no clue how that works... I'm not too familiar with how windows does these things. In linux it would likely get done with containers these days or links or mounts... I don't think either system has union mounts...
Question
g96968
There's a known problem when using executables with Mod Organizer and programs like NifSkope where you can't associate files to the internal executable.
My solution is pretty straight forward: pass the arguments forward.
That is, currently ModOrganizer.exe takes the first argument and executes it after applying* the internal virtual file system. My solution is to just forward the following arguments to the executable. Then, a user could associate a batch file to the desired extension as follows:
This will cleanly pass the first argument. It's even possible to pass all arguments forward using:
Anyhow, that's just my two cents.
Thanks
* no clue how that works... I'm not too familiar with how windows does these things. In linux it would likely get done with containers these days or links or mounts... I don't think either system has union mounts...
Edited by g969686 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now