Actually i have two problems i would like to solve. The first one is the fact that i would like to know if it's possible to run two programs at the same time using different Wine binaries? One would be using stock repostiory Wine, the other by using a git-compiled version. Is that possible, because it complains about different wine prefix versions. Then i also would like to know if it's possible to set registry keys per process, for a specific program, within the same prefix? Thanks, kind regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://www.winehq.org/pipermail/wine-users/attachments/20091204/9f2dcf28/attachment.htm>
Warren Dumortier wrote:> The first one is the fact that i would like to know if it's possible to run two programs at the same time using different Wine binaries?Yes, you'll need separate wineprefixes for that. Warren Dumortier wrote:> Then i also would like to know if it's possible to set registry keys per process, for a specific program, within the same prefix?No, registry is a system global (on Windows) not per application. You'll have to use separate wineprefixes. Except if you talking about Wine settings, then yes, you can configure most settings per application instead globally.
Warren Dumortier wrote:> Concerning the second question, isn't there a variable to set when launching Wine to set the MouseWarpOverrideYes, it's a Wine setting, so you can do that per app (all one line): Code: echo -e "[HKEY_CURRENT_USER\\Software\\Wine\\AppDefaults\\game.exe\\DirectInput]\n\"MouseWarpOverride\"=\"Y\"\n" | wine regedit - Just replace "game.exe" with the name of your game's executable.