Jump to content

Google Chrome Version 41 - GPO Set User Data Directory


Recommended Posts

Posted

Hi,

 

Anyone using Google Chrome version 41 and having issues with the GPO setting 'Set user data directory'? I've updated a few machines today and now when executing Chrome they just still and do nothing.... looking in event viewer I see the below error:

 

Faulting application name: chrome.exe, version: 41.0.2272.87, time stamp: 0x54f95f94
Faulting module name: chrome.dll, version: 41.0.2272.87, time stamp: 0x54f959a9
Exception code: 0xc0000005
Fault offset: 0x000000000005a2de
Faulting process id: 0xecc
Faulting application start time: 0x01d05a7a525d44fb
Faulting application path: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
Faulting module path: C:\Program Files (x86)\Google\Chrome\Application\41.0.2272.87\chrome.dll
Report Id: 9028cf1f-c66d-11e4-8261-70f3957f13ca
Faulting package full name: 
Faulting package-relative application ID: 

 

If I remove the setting from GPO everything works as expected but moving from machine to machine I loose saved settings.

 

Thanks

 

Ben

Posted (edited)

Ok, i had the old user data dir in ${profile}\Google\Chrome, this caused a crash....

 

i cleared it and stuff works again i then i tried setting it to ${roaming_app_data}\Google\Chrome\ and its working..

 

this means either the data stored in the old dir is damaged somehow(i should have tried clearing it first....) or the $profile value is broken somehow hope that helps you

 

 

Scratch that.....

 

tried restarting chrome and its dead again...

 

deleting the local state file i the specified folder seems to get it to start again

 

this also fails after restarting...

Edited by DGardiner
Posted
Looks like your at about the same stage as me... I tried deleting profile data, changing path to ${roaming_app_data}\Google\Chrome\ etc and nothings working ATM. Will have to take another look tomorrow.
Posted
Looks like your at about the same stage as me... I tried deleting profile data, changing path to ${roaming_app_data}\Google\Chrome\ etc and nothings working ATM. Will have to take another look tomorrow.

 

 

Just so you are aware the policy change seems to be causing some machines to launch a chrome instance and hang no idea why but you have to kill the process to get it going again... this is really annoying google are trying to break into the enterprise but not helping themselves here...

Posted
Ours doesn't have a process to kill... but we do get an error in event viewer.

 

Have you tried getting a more recent ADMX file?

 

 

yeah i updated yesterday - the hang only seems to be occurring on a handful of machines if you haven't already adding the update policies and disable chrome updates might be a good thing

Posted
Ok, I'll try that.

 

 

it will atleast stop computers that haven't upgraded from doing so - not sure if it will help but until a version that works comes out :frusty:

Posted

I've downloaded the ADMX file again and it's still listed as version 1.0 still.... I can't see anywhere in the GPO 'Disable Chrome Updates', can you tell me what the option is called please?

 

Do you also use 'Disable Synchronisation of Google Data'?

Posted
I've downloaded the ADMX file again and it's still listed as version 1.0 still.... I can't see anywhere in the GPO 'Disable Chrome Updates', can you tell me what the option is called please?

 

Do you also use 'Disable Synchronisation of Google Data'?

 

its a separate adm Policy Templates - The Chromium Projects

 

and yeah mine still says 1.0 but when i copied it into sysvol the files were all different sizes/newer

  • Thanks 1
Posted (edited)

Did you have any luck?

 

I think as their aware of the issue it should be fixed pretty quickly.

 

EDIT:

 

I changed our test GP from:

 

${documents}\Google\Google Chrome\

 

to

 

${documents}\Google\Google Chrome

 

And its working again.

Edited by jaminben
  • Thanks 2
Posted
Did you have any luck?

 

I think as their aware of the issue it should be fixed pretty quickly.

 

EDIT:

 

I changed our test GP from:

 

${documents}\Google\Google Chrome\

 

to

 

${documents}\Google\Google Chrome

 

And its working again.

 

 

Nah sorry, got handed some other stuff to do and haven't got around to it yet.

 

good to hear your testing is going well though :) does it re-open after the initial setup?

Posted
Did you have any luck?

 

I think as their aware of the issue it should be fixed pretty quickly.

 

EDIT:

 

I changed our test GP from:

 

${documents}\Google\Google Chrome\

 

to

 

${documents}\Google\Google Chrome

 

And its working again.

 

Thank you very much for sharing this, jaminben.

I went down the route of going back to a version of Chrome that was "stable", but actually being able to dish out updates is much better :)

 

I doubt it will be of any use now, but this is a powershell script I was using to clear out the AppData (pointing at "AppData\Roaming\Chrome") of all users on a given PC.

 

 

$ErrorActionPreference= 'silentlycontinue'
$pcName = Read-Host "Enter name of PC"
$target = "\\" + $pcName + "\c$\Users"
$users = Get-ChildItem $target


foreach ($user in $users)
{
   $item = $target + "\" + $user + "\AppData\Roaming\Chrome"
   Remove-Item $item -Recurse -Force


   Write-Host -NoNewLine "."
}


# If running in the console, wait for input before closing.
if ($Host.Name -eq "ConsoleHost")
{ 
   Write-Host "Press any key to continue..."
   $Host.UI.RawUI.FlushInputBuffer()    # Make sure buffered input doesn't "press a key" and skip the ReadKey().
   $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyUp") > $null
}

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...