Isolate hosted service (svchost.exe) in its own process
No, the proper way is to run this command:
sc config
wuauserv type= own
this configures to run Windows Update in its own process. To revert this, run
sc config wuauserv type= share
from a command prompt with admin rights. This changes the setting value type
. If type is 0x20
it is a group process, if the value is 0x10
it is a own process.
Since Windows 10 Creators Update (Version 1703, Build 15063), Windows does this on its own if you have enough RAM.