Seite 1 von 1
Firefox Einstellungen setzen? (Ähnlich IEAK)?
Verfasst: 12 Okt 2010, 11:28
von mhaegele
Hallo!
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
Re: Firefox Einstellungen setzen? (Ähnlich IEAK)?
Verfasst: 12 Okt 2010, 15:17
von paulegon05
Hallo,
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)?
Verfasst: 12 Okt 2010, 15:27
von karni
Wenn du faul bist:
-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:)
Re: Firefox Einstellungen setzen? (Ähnlich IEAK)?
Verfasst: 12 Okt 2010, 15:50
von j.schneider
Hinweis dazu:
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)
Re: Firefox Einstellungen setzen? (Ähnlich IEAK)?
Verfasst: 12 Okt 2010, 17:50
von fisimania
Ich nutze für die Anpassung von Firefox den CCK-Wizard von M.Kaply
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)?
Verfasst: 09 Feb 2011, 10:15
von Cherry
Hallo,
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)?
Verfasst: 09 Feb 2011, 10:18
von Cherry
Ok, ich habe gerade gesehen, dass die prefs.js direkt in dem Benutzerprofil drinnen ist.
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)?
Verfasst: 09 Feb 2011, 12:24
von d.oertel