Hi all
The key you need is below
HKLM\SOFTWARE\Microsoft\Office\Common
Key = Reg DWord
Key Name = IdealConcurrencyValueOverride
Key Value = "Core Number"
I run the below as a start up script which utilises a standard windows variable %number_of_processors%. I need this as the VDI environment I manage has VMs spec'd differently in terms of CPU Cores
REG ADD HKLM\SOFTWARE\Microsoft\Office\Common /v IdealConcurrencyValueOverride /t REG_DWORD /d %number_of_processors% /f
Hope this helps
Graham