Firefox Einstellungen setzen? (Ähnlich IEAK)?
Firefox Einstellungen setzen? (Ähnlich IEAK)?
Gibt es für Firefox ein ähnliches Tool dem (Internet Explorer Administration Kit, IEAK),
oder hat vielleicht jemand ein gutes Tutorial gefunden, welches einem erlaubt die Firefox Einstellungen anzupassen.
(Favoriten, Startseite zuweisen, Proxy-Settings keine Frage nach "Passwort f. diese Webseite speichern usw. )
Falls ihr mir irgendwelche Links habt ...
(Kann ich die Einstellungen auch so setzen daß bereits installierte FF nur mit den Einstellungen "upgedatet" werden?)
Danke im Voraus
MH
-
- Beiträge: 37
- Registriert: 28 Aug 2010, 20:16
Re: Firefox Einstellungen setzen? (Ähnlich IEAK)?
soweit ich weis gibt es explizit kein Tool das dies löst.
schauen Sie sich mal MozBackup (www.mozbackup.de)an, das nutze ich privat um meine FF Einstellungen zusetzen.
Re: Firefox Einstellungen setzen? (Ähnlich IEAK)?
-Firefox auf irgeneinem rechner installieren
-Alles konfigurieren wie es sein sollte
-das Profil auf dem OPSI server kopieren
-das Profil nach Firefox installation kopieren
copy -s "%scriptpath%\xxxxxxx.default\*" "C:\Program Files\Mozilla Firefox\defaults\profile\."
Alle Profile, die angelegt werden, werden von "C:\Program Files\Mozilla Firefox\defaults\profile\" kopiert:)
Wir haben start page,bookmarks,proxy,trusted certificates... alles moegliche so konfiguriert
Wenn du einzelne files editieren willst:
defaults/profile/prefs.js user_pref("network.proxy.*)
defaults/pref/firefox.js autoupdates/firefox options
browserconfig.properties start page
Viel spass:)
- j.schneider
- uib-Team
- Beiträge: 2042
- Registriert: 29 Mai 2008, 15:14
Re: Firefox Einstellungen setzen? (Ähnlich IEAK)?
Der winst kann prefs-Dateien patchen, z.B.:
Code: Alles auswählen
PatchTextFile_firefox_profile "C:\Program Files\Mozilla Firefox\defaults\profile\prefs.js"
[PatchTextFile_firefox_profile]
Set_Netscape_User_Pref ("network.proxy.type", 1)
Vielen Dank für die Nutzung von opsi. Im Forum ist unser Support begrenzt.
Für den professionellen Einsatz und individuelle Beratung empfehlen wir einen Support-Vertrag und eine Schulung.
Gerne informieren wir Sie zu unserem Angebot.
uib GmbH
Telefon: +49 6131 27561 0
E-Mail: sales@uib.de
Re: Firefox Einstellungen setzen? (Ähnlich IEAK)?
https://addons.mozilla.org/de/firefox/addon/2553/
Die konfigurierten Anpassungen werden als Erweiterung gepackt, welche man dann wunderbar verteilen kann.
Re: Firefox Einstellungen setzen? (Ähnlich IEAK)?
muss ich die prefs.js selber erstellen??
Oder ist diese im Firefox Ordner schon verfügbar?
set $PREF_FILE$ = IniVar("pref_file") ---> "pref_file" name der datei?
set $PREF_FILE$ = $PREF_FILE$+".js"
Danke
Re: Firefox Einstellungen setzen? (Ähnlich IEAK)?
Wird mit den folgenden Zeilen die prefs.js ergänzt um die Proxyeinstellungen?
PatchTextFile_profile_proxy_manual $PRODUCTPATH$+"\defaults\profile\"+$PREF_FILE$
[PatchTextFile_profile_proxy_manual]
Set_Netscape_User_Pref ("network.proxy.type", 1)
Set_Netscape_User_Pref ("network.proxy.backup.ftp", "$PROXY_HOSTNAME_OR_IP$")
Set_Netscape_User_Pref ("network.proxy.backup.ftp_port", $PROXY_PORT$)
Set_Netscape_User_Pref ("network.proxy.backup.gopher", "$PROXY_HOSTNAME_OR_IP$")
Set_Netscape_User_Pref ("network.proxy.backup.gopher_port", $PROXY_PORT$)
Set_Netscape_User_Pref ("network.proxy.backup.socks", "$PROXY_HOSTNAME_OR_IP$")
Set_Netscape_User_Pref ("network.proxy.backup.socks_port", $PROXY_PORT$)
Set_Netscape_User_Pref ("network.proxy.backup.ssl", "$PROXY_HOSTNAME_OR_IP$")
Set_Netscape_User_Pref ("network.proxy.backup.ssl_port", $PROXY_PORT$)
Set_Netscape_User_Pref ("network.proxy.ftp", "$PROXY_HOSTNAME_OR_IP$")
Set_Netscape_User_Pref ("network.proxy.ftp_port", $PROXY_PORT$)
Set_Netscape_User_Pref ("network.proxy.gopher", "$PROXY_HOSTNAME_OR_IP$")
Set_Netscape_User_Pref ("network.proxy.gopher_port", $PROXY_PORT$)
Set_Netscape_User_Pref ("network.proxy.socks", "$PROXY_HOSTNAME_OR_IP$")
Set_Netscape_User_Pref ("network.proxy.socks_port", $PROXY_PORT$)
Set_Netscape_User_Pref ("network.proxy.http", "$PROXY_HOSTNAME_OR_IP$")
Set_Netscape_User_Pref ("network.proxy.http_port", $PROXY_PORT$)
Set_Netscape_User_Pref ("network.proxy.no_proxies_on", "$NOPROXY_HOSTS$")
Set_Netscape_User_Pref ("network.proxy.share_proxy_settings", true)
Set_Netscape_User_Pref ("network.proxy.ssl", "$PROXY_HOSTNAME_OR_IP$")
Set_Netscape_User_Pref ("network.proxy.ssl_port", $PROXY_PORT$)
Re: Firefox Einstellungen setzen? (Ähnlich IEAK)?
siehe auch:
http://uib.de/www/service_support/suppo ... bonnements
http://www.opsi.org/opsi_wiki/Firefox
gruss
d.oertel
Vielen Dank für die Nutzung von opsi. Im Forum ist unser Support begrenzt.
Für den professionellen Einsatz und individuelle Beratung empfehlen wir einen Support-Vertrag und eine Schulung.
Gerne informieren wir Sie zu unserem Angebot.
uib GmbH
Telefon: +49 6131 27561 0
E-Mail: sales@uib.de