Use this powershell
ps chrome -ErrorAction SilentlyContinue | kill -PassThru
Start-Sleep -Seconds 5
#Main Section
$Items = @(‘Archived History’,
‘Cache*’,
‘Cookies’,
‘History’,
‘Login Data’,
‘Top Sites’,
‘Visited Links’,
‘Web Data’)
$Folder = “$($env:LOCALAPPDATA)\Google\Chrome\User Data\Default”
$Items | % {
if (Test-Path “$Folder$") {
Remove-Item "$Folder$”-Recurse -Confirm:$false -Force
}
}