Use the following PowerShell Snippet to disable Chrome Software Reporter Tool from eating your CPU cycles:
| 
					 1 2 3 4  | 
						Set-ItemProperty 'HKLM:\SOFTWARE\Policies\Google\Chrome' `     -Name ChromeCleanupEnabled -Value 0 Set-ItemProperty 'HKLM:\SOFTWARE\Policies\Google\Chrome' `     -Name ChromeCleanupReportingEnabled -Value 0  | 
					
ChromeCleanupEnabled’s value determines whether the Software Reporter Tool may run on the system.
ChromeCleanupReportingEnabled’s value determines whether the results are reported to Google.