In order to move a service from a shared SVCHOST process into its own SVCHOST process:
Check the current SVCHOST processes, and the services assigned: 
tasklist /SVC /FI "IMAGENAME eq svchost.exe"
Change a service to its own SVCHOST processes: 
sc config <service name> type= own
Change a service back to a shared SVCHOST process: 
sc config <service name> type= share