Page 1 of 1

Where to locate .exe/.msi

Posted: Mon Oct 06, 2014 8:23 pm
by LiquidAurum
I'm trying to install adblock plus with GPO, by installing the .msi/exe files. But I"ve only been able to find those for IE, and still searching for chrome and firefox versions.

Re: Where to locate .exe/.msi

Posted: Tue Oct 07, 2014 6:15 am
by Gingerbread Man
There's no such thing. Chrome extensions are CRX files, while Firefox extensions are XPI files.

Chrome
http://code.google.com/chrome/extension ... sions.html

Firefox
https://developer.mozilla.org/en-US/Add ... extensions

Re: Where to locate .exe/.msi

Posted: Tue Oct 07, 2014 3:06 pm
by LiquidAurum
Gingerbread Man wrote:There's no such thing. Chrome extensions are CRX files, while Firefox extensions are XPI files.

Chrome
http://code.google.com/chrome/extension ... sions.html

Firefox
https://developer.mozilla.org/en-US/Add ... extensions
Do you know if possibly there is a way to use those 2 links for group policy?

Re: Where to locate .exe/.msi

Posted: Tue Oct 07, 2014 3:10 pm
by mapx

Re: Where to locate .exe/.msi

Posted: Tue Oct 07, 2014 3:36 pm
by LiquidAurum
Thanks for this, do you happen to know the adblock plus extension ID and update url? I need those to setup .reg file for GPO.

Thanks

Re: Where to locate .exe/.msi

Posted: Tue Oct 07, 2014 3:45 pm
by mapx
the ID should be included in the store url for the extension
https://chrome.google.com/webstore/deta ... fddb?hl=en
so ==>

Code: Select all

cfhdojbkjhnklbpkdaibdccddilifddb
for the update url: You find this info in the manifest.json of the extension

Code: Select all

"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCxGWIIBRUVzQIXITqE6+js1FA24fsZC58G0fxcO1Duwfps+9gip5tedTziErKEpeAQVkgasdT4kk+b6Lw27yp3oysAj6zD9j+j4W+EMArTXqMIc6SMYD7Z8bPcwPb3tC1MUxMSpO6oOVpFE23UhKe91SYnrK92nHI2cmsor5elXQIDAQAB",
   "manifest_version": 2,
   "minimum_chrome_version": "28.0",
   "name": "__MSG_name__",
   "options_page": "options.html",
   "permissions": [ "tabs", "http://*/*", "https://*/*", "contextMenus", "webRequest", "webRequestBlocking", "webNavigation", "unlimitedStorage", "notifications" ],
   "update_url": "https://clients2.google.com/service/update2/crx",
   "version": "1.8.5",

Re: Where to locate .exe/.msi

Posted: Tue Oct 07, 2014 4:10 pm
by LiquidAurum

Code: Select all

[HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExtensionInstallForcelist]
1=cfhdojbkjhnklbpkdaibdccddilifddb;http://clients2.google.com/service/update2/crx?response=redirect&

This is what I put in notepad++ and saved as .reg file. But it keeps saying "you can only import binary registry files from within the registry editor"

Re: Where to locate .exe/.msi

Posted: Tue Oct 07, 2014 4:14 pm
by mapx
see
http://www.thefreewindows.com/14039/err ... ary-files/

try using windows's notepad to be sure you don't include strange characters in the text

Re: Where to locate .exe/.msi

Posted: Tue Oct 07, 2014 4:28 pm
by LiquidAurum
Ok so that executed successfully, but it didn't actually work, it was a success as far as installing in .reg, but nothing came out of it, do I have to reinstall chrome? Please don't give me a link, I'd prefer an explanation rather then searching through he link if possible. thanks

Re: Where to locate .exe/.msi

Posted: Tue Oct 07, 2014 4:44 pm
by mapx
Did you create the entry like here ? (I don't see the double quote and I see also something like ?response=redirect& )
http://dev.chromium.org/administrators/ ... lForcelist

Code: Select all

Software\Policies\Chromium\ExtensionInstallForcelist\1 = "cfhdojbkjhnklbpkdaibdccddilifddb;https://clients2.google.com/service/update2/crx"

Re: Where to locate .exe/.msi

Posted: Tue Oct 07, 2014 5:15 pm
by LiquidAurum

Code: Select all

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExtensionInstallForcelist]
1=cfhdojbkjhnklbpkdaibdccddilifddb;http://clients2.google.com/service/update2/crx?response=redirect&
this is exactly what it looks like, the 1=cfh is on a new line as seen above

Re: Where to locate .exe/.msi

Posted: Tue Oct 07, 2014 5:20 pm
by mapx
from that link it should be:

Code: Select all

Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\Software\Policies\Google\Chrome\ExtensionInstallForcelist]
1="cfhdojbkjhnklbpkdaibdccddilifddb;http://clients2.google.com/service/update2/crx"
see also
http://stackoverflow.com/questions/2416 ... t-not-work

Re: Where to locate .exe/.msi

Posted: Mon Oct 13, 2014 7:33 pm
by LiquidAurum
I tried to copy/paste exactly what you said and I see in my registry that the entry is there but it says no value set. I don't know if that is normal or not.