you can 'permanently' set a program's affinity by creating a .bat batch file in the same folder as the program, with the contents:
Code:
start /affinity 1 program_name.exe
this will force the software to use only cpu core 0. use ... /affinity 2 ... to specify cpu core 1 etc
you should then modify the program's start-menu and/or desktop shortcut to point to your newly created batchfile.
a tiny drawback is that you will see a small cmd window briefly flash on the screen before your program opens.
-------------------------------------------------------
for extra performance, you can add /high to give the application a higher cpu priority.
Code:
start /affinity 1 /high program_name.exe
(Brink, if you can rewrite this to make it clearer, then please do.

)