|
|
|
|
|
by Ace17
3629 days ago
|
|
svchost.exe (i.e "service host"), is a technique for grouping several services into one process.
The goal is to avoid spawning one process per service, saving some memory. I believe today the gains are outweighted by the costs of this technique: memory isn't really the limitation factor anymore.
On the other hand, grouping several mostly unrelated services in the same process is a security and stability issue. |
|