Re: [Mozilla Enterprise] [From: EXTERNAL] Remove old Firefox and Install new version 58.0

2018-02-14 Thread Delise, John

Loghaman,

Using SCCM my package removes firefox with this command-line

"C:\Program Files (x86)\Mozilla Firefox\uninstall\helper.exe" /S

The S does not have to be capitalized.

I have used this for  versions back to for many versions. I would test it from 
an elevated command prompt on each version you have.

It has been our best practice to always remove the previous version before 
installing a new one, but as always test, test, test.

It does NOT remove the users profile. Reverting to earlier versions using an 
uninstall\install method may fail because of differences introduced to the user 
profile by each new version.

“Always forward, never backwards…”

Thank you,

John Delise
Windows Deployment Engineer
[Image32]
VW Credit, Inc.
IT Operations
1401 Franklin Boulevard
Libertyville, IL 60048
United States of America

Phone +1(847) 371-4136
john.del...@vwcredit.com

[VW-Credit-Inc.-Logo]

From: Enterprise [mailto:enterprise-boun...@mozilla.org] On Behalf Of Loghman 
Adak
Sent: Wednesday, February 14, 2018 11:16 AM
To: enterprise@mozilla.org
Subject: [From: EXTERNAL] [Mozilla Enterprise] Remove old Firefox and Install 
new version 58.0

Hello,

I hope you are doing well. I am planning to push the latest Firefox (58.0) to 
our users via sccm 2012. The package has been created and tested successfully 
for new installation. But our users have different versions of Firefox such as 
39, 43, 47 and etc. Do you have any guideline to remove all previous versions 
and install new version by SCCM?

I look forward to hearing from you soon.

Sincerely,
Loghman Adak
___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"

[Mozilla Enterprise] Remove old Firefox and Install new version 58.0

2018-02-14 Thread Loghman Adak
Hello,

I hope you are doing well. I am planning to push the latest Firefox (58.0)
to our users via sccm 2012. The package has been created and tested
successfully for new installation. But our users have different versions of
Firefox such as 39, 43, 47 and etc. Do you have any guideline to remove all
previous versions and install new version by SCCM?

I look forward to hearing from you soon.

Sincerely,
Loghman Adak
___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"

Re: [Mozilla Enterprise] Date of purge of XUL extensions at Addons site?

2018-02-14 Thread Jorge Villalobos
Agree that addons-dev is the better place for this discussion. I'll just
add that you can find the AMO source code in these repos:

https://github.com/mozilla/addons-server
https://github.com/mozilla/addons-frontend

You can manage with just the first one to stand up a site that looks and
works like it did before the launch of Firefox 57.

Jorge

On 2/13/18 10:33 PM, The Wanderer wrote:
> On 2018-02-13 at 21:40, James Andrewartha wrote:
> 
>> On 14/02/18 10:25, Paul Kosinski wrote:
>>
>>> Does anyone agree with me that such a "scorched earth" policy is 
>>> unreasonable?
>>
>> Absolutely. If Mozilla doesn't change their policy, I'll see if we
>> can archive all of addons.mozilla.org for the Internet Archive.
> 
> I believe I'm one of the people Jorge mentioned as having been pointed
> to API documentation, et cetera, about how to pull addons from AMO en
> masse for a local archive.
> 
> The pointed-to API documentation was sufficiently far from user-friendly
> that I couldn't do much with it when starting from zero. I wound up
> finding someone else's existing Python scripts, updating them to
> actually work (for which the API documentation was helpful), and using
> them to pull down (what should be) the entire repository of XPIs -
> including all historical versions - and what appears to be related
> metadata in JSON form.
> 
> The result does not appear to be remotely suited for putting up an
> AMO-like site, or even a readily accessible archive site (much less a
> usable AMO mirror), without a lot of work that I'm not remotely prepared
> to do; I looked for a repository of the code that runs AMO, but did not
> find one. Still, I do have that apparently-full archive of
> publicly-downloadable addon versions, as of sometime in early August of
> 2017. For reference, it comes to ~21GB.
> 
> https://github.com/andymckay/addons-server-mirror.git is the repo where
> I found the script I tweaked. It didn't work as downloaded, but I don't
> know whether that's because it never had or because something external
> had changed in the meantime. The tweaks aren't necessarily suitable for
> general usage (IIRC, one of the things they do makes the script more or
> less incapable of doing anything but exactly what I needed it to), but I
> can provide them if needed.
> 
> I plan to update (if not completely re-download) this local archive as
> close to the last minute before AMO purges classic addons as I can.
> Unfortunately I'm not remotely in a position to be able to make the
> archive itself publicly accessible, but if someone who is wants to do it
> in my place, I could probably provide what I already have.
> 
> That said, any further Mozilla-list discussion of this should probably
> go on dev-addons. I'm already subscribed over there, so I'll catch any
> conversations that do get started; I'm replying here this time only so
> that interested parties to this thread who aren't subscribed to
> dev-addons don't miss the reply.
> 
> 
> 
> ___
> Enterprise mailing list
> Enterprise@mozilla.org
> https://mail.mozilla.org/listinfo/enterprise
> 
> To unsubscribe from this list, please visit 
> https://mail.mozilla.org/listinfo/enterprise or send an email to 
> enterprise-requ...@mozilla.org with a subject of "unsubscribe"
> 



signature.asc
Description: OpenPGP digital signature
___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"

Re: [Mozilla Enterprise] " Remember History" should be enabled always

2018-02-14 Thread James Pearson
Kumar Kondru wrote:
> 
> I want to keep " Remember History" in privacy tab as users are
> changing the settings in production. And, we should not allow user to
> change it from " Remember History" to others (Never remember history,
> use custom settings for history)
> 
> I tried hard to make changes via config file but it didn't help. So,
> Kindly help me to keep " Remember History" always via config file

You don't say what config changes you've made - but I think you can 
achieve this by adding the following to your autoconfig cfg file:

  lockPref("places.history.enabled", true);
  lockPref("browser.privatebrowsing.autostart", false);

This appears to prevent users selecting 'Never remember history', but 
does allow 'Use custom settings for history' - with 'Remember my 
browsing and download history' locked to 'on'

I guess you will also want to disable Private Browsing ? - if so, then 
this can be done via CCK2 - which also removes the 'Never remember 
history' menu item

James Pearson
___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"


[Mozilla Enterprise] " Remember History" should be enabled always

2018-02-14 Thread Kumar Kondru
Hi All,

I want to keep " Remember History" in privacy tab as users are changing the 
settings in production. And, we should not allow user to change it from " 
Remember History" to others (Never remember history, use custom settings for 
history)

I tried hard to make changes via config file but it didn't help. So, Kindly 
help me to keep " Remember History" always via config file

Thanks and Regards,
Ajay Kumar



The information contained in this e-mail message may be privileged, 
confidential, and protected from disclosure. Any unauthorized use, printing, 
copying, disclosure or dissemination of this communication may be subject to 
legal restriction or sanction. If you think that you have received this e-mail 
message in error, please reply to the sender and delete this message from your 
computer.
___
Enterprise mailing list
Enterprise@mozilla.org
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit 
https://mail.mozilla.org/listinfo/enterprise or send an email to 
enterprise-requ...@mozilla.org with a subject of "unsubscribe"