thanks. I had one under machine, but even as admin I could not delete it. I forget the exact error, but it was something like access deniedThis message pops up whenever Chrome sees anything under either HKEY_CURRENT_USER\Software\Policies\Google\Chrome or HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome, and the quick solution is just to remove (or rename if you're feeling cautious) both keys using REGEDIT.
I've had to do this a few times lately when migrating users out of G Suite and it's worked perfectly every time.
(I have no idea what'll happen if the machine is still using G Suite - you're on your own there!)
thanks. I had one under machine, but even as admin I could not delete it. I forget the exact error, but it was something like access denied
Yup as adminDid you try running regedit as admin? I'd also give an offline regedit tool a try as well.
You need to go into Permissions and take ownership.thanks. I had one under machine, but even as admin I could not delete it. I forget the exact error, but it was something like access denied
@echo off
IF NOT EXIST %WINDIR%\System32\GroupPolicy goto next
echo Deleting GroupPolicy folder...
RD /S /Q "%WINDIR%\System32\GroupPolicy" || goto error
echo.
:next
IF NOT EXIST %WINDIR%\System32\GroupPolicyUsers goto next2
echo Deleting GroupPolicyUsers folder...
RD /S /Q "%WINDIR%\System32\GroupPolicyUsers" || goto error
echo.
:next2
gpupdate /force
pause
exit
:error
echo.
echo An unexpected error has occurred. ¨Did you run as administrator (right click, run as administrator)?
echo.
pause
exit