Slashdot Mirror


Rolling Out Mozilla in an Organization?

jdclucidly asks: "I am a network administrator for a small non-profit (about 50 employees). I would like to roll Mozilla 1.2.1 out to all of our desktops. We don't have a single ghost image because the computers on site are too varied. Yes, I did my Googling. The source for the installer is just huge and mind boggling. Is there something like a Mozilla Administration Kit that will generate custom Mozilla installers? If not, would people on Slashdot be interested in starting a new project to make such a kit?" If you were going to deploy a "branded" version of Mozilla, company-wide, how would you do it, especially if you had to worry about a mixed OS environment?

"Here's what I want to do:

  • Install everything but Quality Feedback Agent
  • Set Mozilla as the default browser
  • Disable 'Open Unrequested Windows' (kill pop-ups)
  • Install Elveraldo's Crystal-Classic theme as default
  • Set Google as the default search engine
  • Set 'Georgia' as the default Serif font for Western and Unicode
  • Enable HTTP Pipelining
  • Enable FIPS internal cryptography
  • Set toolbar to 'Pictures only'
  • Set Home Page to my organization's intranet site
  • Set start page to 'Blank page'
  • Disable 'Hide the tab bar'
  • Enable Middle-click for new tab
  • Enable control+enter for new tab
  • Default downloads to 'open a progress dialog'
  • Disable Javascript and Plugins for Mail & News
  • Enable quicklaunch
  • Create an additional shortcut on the desktop and in quicklaunch that uses chrome/icons/mailnew.ico as it's source and points to 'mozilla.exe -mail'
As you can imagine, doing this on 50 computers (and making sure I got each of these) would be quite tedious. Are, there others out there that want to do the same thing. I checked the Mozilla newgroups. I checked the CCK Project page at Mozilla.org -- it appears to be pretty inactive. I checked out the Netscape 7 CCK, which is pretty robust but doesn't do everything I want and it's proprietary -- plus, I don't want all the NS7 proprietary crap on my network.

I installed Mozilla on my machine using the stub installer and had it save all of the .XPI components to a folder. I went in and extracted the .XPI's and examined them. It seems possible to do these things but not without learning XUL, JavaScript, XML and Mozilla.org's own stuffings -- not to mention setting up a Visual C++/Cygwin compiling farm for every next Mozilla release. Can I:
  • Directly modify the defaults/prefs/all.js file to incorporate my preference defaults above and then recompress the .XPI?
  • Add to the installer Crystal-Classic.jar somehow? Where are those changes made?
  • Make the installer NOT allow the user to change any of this?
  • Make the installer create the above mentioned shortcut?"

63 of 435 comments (clear)

  1. just copy the directory by Anonymous Coward · · Score: 5, Insightful

    just copy the directory, mozilla doesn't need registry entries.. it stores all its settings in some whacky xml files

    1. Re:just copy the directory by MikeFM · · Score: 4, Insightful

      Copying the directory is pretty much what I'd suggest. Configure one browser for each platform and make a tarball for Linux, a zip installer for Windows, etc and just copy your settings over. For 50 machines it wouldn't be worth the effort of using a client customization kit or anything like that. As far as keeping users from changing their settings that's easy enough in Linux but am not sure how you'd do it in Windows or MacOS. Just change the owner of the config files away from the user and give them read but not write permissions to those files.

      --
      At what price learning? At what cost wisdom? The price is a man's peace of mind, and the cost is his life.
    2. Re:just copy the directory by SnowDeath · · Score: 5, Informative

      Dont forget to copy the registry.dat when you copy Mozilla from Application data so that Mozilla knows where you are storing the Mozilla profile. As long as you are using 2000/XP (NT could work too, that's what I had have to use at work right now), just make all of your profile directories/files ready only *EXCEPT* the parent salted directory, they need read/delete to that for the lock file.

      The way I have Mozilla set on our NT4 machines is to use the profile editor (name?), delete the default, create my own (named modlang, being that I run the modlang computer lab) profile, put it under mozilla.org in the program files directory, set everything to the way I want (popup blocking, default homepage, etc) and then simply copy mozilla.org directory (with mozilla already being installed on the profile creating machine) to each target machine.

      The tricky part was figuring out that I needed to copy the registry.dat to default user's application data directory, after figuring that out it is cake.

    3. Re:just copy the directory by MarcQuadra · · Score: 2, Interesting

      I would just SHARE the directory from a single machine running SAMBA or win2k server. Think, you could upgrade everyone at once just by updating ONE install! Make most of the files read-only and roll it out to a few people you know will be 'cool' first and let them test the implementation for you. Also, turn on QuickStart for ALL users so loading moz over the network doesn't slow things down too much or hose the server.

      --
      "Sometimes, I think Trent just needs a cup of hot chocolate and a blankie." -Tori Amos on Nine Inch Nails
    4. Re:just copy the directory by mentin · · Score: 2, Informative
      The problem is that Mozilla stores some settings in user's config. User config is not easy to clone - my prefs.js has many occurences of full path to user's config folder and to Mozilla installation path, so it would not be easy to just deploy a tarball.

      Also he wants to make it default browser, so he need to update some registry keys.

      --
      MSDOS: 20+ years without remote hole in the default install
    5. Re:just copy the directory by cornice · · Score: 2, Informative

      I tried this. For some reason it was _really_ slow. I have many apps installed this way but it did not work well for Mozilla.

    6. Re:just copy the directory by Vaughn+Anderson · · Score: 3, Interesting

      If this is totally true, and you can just copy the directory then all you have to deal with is this-
      Buy Wise installer or some other installer App (perhaps 1 for each OS, can't imagine it would be more than 3)

      1) If what was stated is true (that you can simply copy the folders) then make an installer based on your one computer's Moz setup.

      2) This will compress your files.

      3) You can add any extra files you want (.jar or otherwise) Install those as well, or even make seperate installers for the jar files, and simply include them in the installer. You can put these files anywhere you want on their system as well, simple point, click and naming folders and such, it's very easy.

      4) Any variations of versions of an OS (say windows 95 vs Windows XP) can be detected using scripting in the Wise installer (or hopefully any other installer you use) and then you can install different files based on the version of the OS.

      5) You would maintain total control of how the installer puts files on the end users computer. (One installer I made when ran, didn't ask the user anything, just opened up, installed the files and then closed.)

      6) Any and all shortcuts, and folder groups are all super cake and easy to setup with a good installer application. I highly recommend wise if you do any installing on windows.

      7) A simple wise for windows installer 4 standard edition is $450, with all the power and ease of use you get for it, you will find it can help you with many other things to install besides this. You can make installers to install installers, just to get past people screwing up things. :) (like automated button clicks and the such) though I have only experimented with these things a little.

      8) If you have the money and the time to learn the more robust installers, you may be able to do even more than the above.

      -v

    7. Re:just copy the directory by MikeFM · · Score: 2, Interesting

      A decent installer program can do that. I used to do such things when I worked at local schools and had to manage several hundred computers more than mortal man can handle. It's been so long though that I'm not sure what the best installer is these days. That was in the days of Win95/98 only. I used some installer that is free to opensource projects. I can't remember it's name anymore but if you look I bet you can find it or something similar. It could manipulate registry keys.

      --
      At what price learning? At what cost wisdom? The price is a man's peace of mind, and the cost is his life.
  2. Priorities by trans_err · · Score: 3, Insightful
    Seems to me like you're just begging for large scale trouble. Take the time and make annnnnnnn image for all the computers, making the one or two neccesary for differences in platforms are still going to save you a lot of time in the long run. What happens when you decide you want to update to Mozilla 1.3 or roll out some other app? In the long run it seems like you could greatly increase stability, continuity, and prohibit a lot of headaches like this one if you just slow down and build from the ground up.

    IMHO of course.

    1. Re:Priorities by pavera · · Score: 3, Insightful

      He stated in his post that making images wasn't really going to reduce complexity because the systems themselves are too varied, images do not reduce the amount of time needed in this case. if you have 50 computers and they all have different hardware, you've gotta have 50 images, your average win2k image with no software is about 1 Gb, with stuff like office, and other software, easily 1.5Gb each, so, now you're looking at 75Gb of storage just to keep all of your images (not that 75Gb is some huge amount anymore really, but it is pretty big, I used to work in a 130 employee firm, and until about 1 year ago we only had 100gb of total server storage space, so 75 of that used up for images wasn't feasible at all). plus you have to keep track of which image goes to which computer, besides, you'd have to manually install all of the software on *each* computer anyway to create the initial images, images will not help in this case.

    2. Re:Priorities by nolife · · Score: 2, Insightful

      Have you ever thought of using SYSPREP from the W2K resource kit? It actually does work and can be used on machines with different hardware. There are limitations and for 50 completely different machines it might take considerable time getting it to work correctly for all of them. The more time you put into it the better and more efficient you can make the whole process but, there is a fine line you may cross and end up spending more time then you'd ever save. It comes to a balance of differences in hardware which increases the initial complexity, with how many applications you have to install after the base OS which decreases the overall install time. Of course this won't help you with the Linux machines but there are methods of reducing per machine specific installs for those too like thin clients, rsync, common home and bin dirs etc..

      --
      Bad boys rape our young girls but Violet gives willingly.
  3. Automate It by adrox · · Score: 2, Informative

    I recommend Automate. It would get the job done and can be deployed over a network. Although it'll only work on windows machines. Alternatively a cheaper solution would be to copy over all the mozilla files and registry settings to each machine.

  4. Re:Don't use Mozilla by pavera · · Score: 4, Interesting

    everyone is always praising phoenix, however, on my machine it uses more RAM (about 26MB compared to 20 for mozilla) it isn't noticably faster, and there isn't an option to ctrl+enter in the location bar to open a new tab, ctrl+enter in phoenix does the same as in IE (adds http://www. to the front and .com to the end of whatever is in the location bar) which is a nice shortcut, but I'm too addicted to ctrl+enter creating a new tab, so phoenix's usability suffers for me, and I don't get alot of speed increases anyway...

  5. Uhh... this is what you DON'T want to do by cscx · · Score: 4, Informative

    This is 100% the wrong way to go about things, bud. What you want to do is use something like Microsoft Systems Management Server, Veritas WinInstall, or Novell ZenWorks SnAPPShot to monitor the install on your install test-bed PC (you DO have one, don't you?), make all those oodles of changes you want to, then redistribute it identically to your clients. If you don't have these, I would buy one of the packages -- the money you spend will save you $$$ in man-hours trying to come up with a hackneyed, crappy homebrew solution in the long run. Once you start using these distribution apps, they will become your next best friend.

    1. Re:Uhh... this is what you DON'T want to do by weave · · Score: 2, Interesting
      Use the zip file. Just unzip right into program directory. Then run it, load additional XPIs to taste, xcopy the program folder up to a server. To install on each station, just xcopy or wrap into an .msi and deploy to workstations automatically via a GPO.

      Mozilla is easy to deploy, but a bitch to configure. See my other note in this thread for that nightmare...

    2. Re:Uhh... this is what you DON'T want to do by FatherOfONe · · Score: 4, Informative

      I agree with you, and am a HUGE fan of WinInstall, but there is a couple of issues.

      1. WinInstall handles win9x and winnt/2k/XP clients differently.

      2. All the systems you mentioned cost money. A significant amount of money.

      3. SMS will only work with Microsoft stuff and it kinda sucks, although I heard the new version is ok. Just expect vendor lock-in.

      4. Novell Zenworks will require an NT server or a Novell server, and the version that I used put all the files in NDS. You couldn't edit them or do much with them after you did a scan. WinInstall blew them out of the water.

      The core reason you use an unatended install is the EXCACT reason this guy wants one and WinInstall isn't such a good option. He has 50 desktops probably all different. Some have multiple drives some don't. If you made a WinInstall or SMS or ZenWorks package to do this type of install, you better be great a building those packages, because you will be using your "test" machine as a template for all the desktops in the organization. If for some reason that test machine had a DLL that the other 40 didn't have...

      --
      The more I learn about science, the more my faith in God increases.
  6. Ok, I'll take a shot. by Anonymous Coward · · Score: 3, Interesting
    Why make it harder than you need to? How about this:

    Make one install on your PC. Setup all of the preferences how you want them.

    Copy the .mozilla directory (or whatever) to wherever you plan on installing this from. chmod a-w on it for *nix users, set permissions accordingly on it for Windows.

    Put your .jar theme where it needs to be

    Install on everyone else's PCs and just copy the preferences folder via a script or by hand.

    Profit!

    It such a small number of people, it should be painless to do it by hand anyways.

  7. The easy way... by DaveOnNet · · Score: 5, Funny

    Just prohibit the use of Mozilla in your organization and then make sure employees have access to the Internet. They're bound to set it up themselves that way.

    --
    Rank comments and posts against each other at We-Rank.com
  8. It' won't be easy... by weave · · Score: 5, Interesting
    I tried, went through hell. I assume you're doing this in a Windows environment. If so, be aware of some real killer limitations.

    First of all, Mozilla doesn't understand UNC paths. If your GPO redirects %appdata%, you're screwed. Quit now. The mozilla registry.dat file goes in %appdata%\mozilla and if %appdata% is in a UNC of DFS share, it won't find it.

    Then ... if you allow users to create profiles in the default location, below %appdata%\mozilla, expect profiles to go missing. Windows has a nasty habit of duplicating roaming profiles, like profiles\user, profiles\user.domain, profiles\user.domain.000, etc... Since your profile location is a hardcoded path in registry.dat, Mozilla will find it, but will try to load the profile in the stale profile location. If that doesn't exist now, it'll throw up a profile manager asking you to recreate one.

    The solution to above is to create the profile manually via a command like:

    mozilla.exe -CreateProfile "default z:\mozilla"

    That will move the bulk of the profile (except registry.dat) to a fixed location out of the roaming profile.

    For a lot more detail and my rant, read bug #162025, comment #28.

    We have done a lot to get it working finally, including some logon vbscripts to create the profiles, repair prefs.js file, have some mandatory prefs.js entries that are replaced during logon if user changes them (like home page for us), etc...

    We've been through hell but think we finally have it licked by working around mozilla bugs. We intend to post a page on our experiences, but not in the next 12 hours (the effective life of a slashdot story)

    When it's ready, I'll e-mail you or feel free to contact me if you want the scripts as they stand now (we are still debugging some things).

    1. Re:It' won't be easy... by BlueUnderwear · · Score: 4, Informative
      Windows has a nasty habit of duplicating roaming profiles, like profiles\user, profiles\user.domain, profiles\user.domain.000, etc...

      We have seen this behaviour too. However, apparently, as far as we could see, it would only happen on Win2k, on NTFS partitions. Win2k + FAT32 was ok. So, what we did was create a small D: partition as FAT32, and configured Windows to store the cached user profile on that partition. From then on, our "multiple profiles" problem was gone.

      Since your profile location is a hardcoded path in registry.dat, Mozilla will find it, but will try to load the profile in the stale profile location. If that doesn't exist now, it'll throw up a profile manager asking you to recreate one.

      Or just store the profile somewhere on the user's home directory (H:\Mozilla\)

      ...repair prefs.js file, have some mandatory prefs.js entries that are replaced during logon if user changes them (like home page for us), etc...

      No need to bother with vbscript. Just use locked settings in the mozilla.cfg file. This page described how. Just insert entries such as the following into your mozilla.cfg.txt:

      lockPref("browser.startup.homepage", "http://my.home.page/");

      Then encrypt the file to mozilla.cfg using this program (with an offset of 13). N.B. The mozilla.cfg.txt file must start with a comment (two slashes), and be referenced from all.js or else it will be ignored by mozilla. After having set up a mozilla.cfg, the user can no longer change the relevant settings (they are greyed out), and even if he does manually edit his prefs.js, mozilla will fix prefs.js the next time it starts up.

      --
      Say no to software patents.
  9. HTF did parent get to +5? by Anonymous Coward · · Score: 2, Insightful

    Guy asks for info on how to *autoinstall* Mozilla on 50 machines. Somebody replies saying use Phoenix instead, *without* giving any input on autoinstalling. Is it that obvious how to autoinstall Phoenix?

  10. Web Browser Kiosk Build-Experience by VoidEngineer · · Score: 4, Informative

    Ah, I used to do something similar at the Department of Networking Services & Information Technologies, at the University of Chicago, were I used to work. Setup up webkiosks and the like for the campus.

    Your probably already know this, but I'll point out the obvious:

    1. Set up a Ghost server for yourself. Maybe even look at a copy of Alteris LabExpert.

    2. Backup often.

    3. Set yourself a timeline with mile markers. Give yourself a few months, so you don't pull out your hair or have a mental break down. Plan a reasonable project timeline, such as 3 months.

    4. Set up testing workstations. Get all of your networking issues out of the way before you start on Mozilla. TCP/IP or other protocol stacks should already be installed. All device drivers should already be installed.

    5. Take the list which you've already made, and make the changes to the box. When you get the change to work, backup the box with your image server. Keep detailed notes of what you've just accomplished.

    6. Repeat step 5 until all items are completed.

    7. When step 6 is completed, backup the workstation, diff the image if needed, and push it onto workstations of similar hardware configuration. Either package the image as an application (tar, zip), an application image (ZenWorks, Active Directory resource, Ghost, etc), or an operating system image (SMS, Alteris, Ghost).

    Once you get into the groove of the project, it'll go quickly.

    Sorry for stating the obvious, but you're talking about a fairly complex network engineering task. Don't expect it to happen next week or even next month. Just make sure you have an imaging server and that you take good notes, and the project will go fine.

  11. Some simple ideas. by The+Creator · · Score: 4, Interesting

    First install mozilla on one machine. Then obtain the source, find where the signal handler(i think that is what it is called) for the meny ithem edit->preferences is set and comment that out, compile. Now you should have a version of mozilla that the user cannot configure.

    Use the first installation(full version) to generate all the files that contain the settings you want for each machine. And copy them to each machine after installing the crippled mozilla on them.

    You should be able to achiave your goals like this, if each machine requires uniqe settings(email and such) then you have some work to do, but it should'nt be impossible.

    --

    FRA: STFU GTFO
    1. Re:Some simple ideas. by BlueUnderwear · · Score: 2, Informative
      No need for recompilation. You can "lock" configuration settings easily using the mozilla.cfg file. Here's how to do it in 3 easy steps:
      1. Put the following line into C:\Program Files\mozilla.org\Mozilla\defaults\pref\all.js:
        pref("general.config.filename", "mozilla.cfg");
      2. Write a mozilla.cfg.txt file containing the config items that you want to lock:

        // Mozilla cfg file

        lockPref("browser.startup.homepage", "http://my.home.page/");
        lockPref("network.proxy.type", 2);
        lockPref("network.proxy.autoconfig_url", "http://intranet/~admin/proxy.pac");

        There is also use a defaultPref command for setting defaults that the user may change.

      3. Using the moz-byteshift.pl program, "encrypt" the file using an offset of 13, and put it into C:\Program Files\mozilla.org\Mozilla

      Check this page for more details.

      Granted, this is not foolproof (the user could use the same method as described here to change his settings), but you can make it difficult enough by making the mozilla.cfg file writeable only by the Administrator.

      --
      Say no to software patents.
  12. Re:Question... by Alex · · Score: 3, Insightful

    Its called a "corporate standard" for a reason.

    Alex

  13. Easier transition... by hendridm · · Score: 2, Informative

    I like Phoenix because I'm forced to switch between browsers a lot (thanks to my job). All the shortcut keys are similar between IE and Phoenix (unlike Mozilla). Alt-D puts me in the address bar (Ctrl-L in Moz), Shift-Click opens in a new window, and best of all, Ctrl-Enter in the address bar, as you said, works just like in IE. The consistency is handy if you use two different browser at the same time (like havign IE at home and Phoenix at work, as I imagine many of your employees will have).

    1. Re:Easier transition... by gnugnugnu · · Score: 2, Informative

      > Alt-D puts me in the address bar

      Mozilla 1.3a
      works like a charm.

      previously alt+d was taken by the debug menu but that has changed to 'Deb_ug' and now alt+d will put you where you want to go, right in the location bar.

      Ctrl click (instead of shift click) opens a new window in Mozilla.
      Middle click (or click with the mouse wheel) opens a new tab.
      Shift click is used for saving a link target.

      Internet explorer does not seem to do anything with Ctrl+Click, although i expect it has a different keybinding somewhere.

      guess it all depends on what you are used to.

    2. Re:Easier transition... by fucksl4shd0t · · Score: 2, Funny

      so ctrl+alt+enter is great! haha! maybe I'm addicted to phoenix now! lol, how easily I'm pleased :)

      If you love that, check out what ctl+alt+backspace does in mozilla.

      --
      Like what I said? You might like my music
  14. Re:How about the Client Customization Kit? by mike_sucks · · Score: 2, Informative

    What part of the article didn't I address? Sure the Google bit was a duplication, but that's how I came acroos the CCK in the first place.

    How about understanding what I posted? I find a brain works well for that sort of thing.

    /mike

    --
    -- "So, what's the deal with Auntie Gerschwitz et all?"
  15. Re:Tip of the Week by dameron · · Score: 2, Insightful

    I would expect the liability (not necessarily legal liability, but personal liability) would be far to great to standardize on IE. Would you install IE on 50 desktops if you knew your job was riding on IE's security and reliability.

    Also, for the poster, I'd just have someone do it. Burn all the installer files for whatever platforms you're supporting to a cd and carry it from station to stations. Or share it on a network and do a network install. You'd be surprised how fast you can do them all after you've got the first ten or so done. Seriously, a good tech could do this in an afternoon, or a day at most. Plus it's good for the soul.

    -dameron

  16. Re:Question... by dvdeug · · Score: 3, Insightful

    Don't put your kid's picture up as wallpaper (less of a gripe, I don't really care, but give an inch...).

    You aren't working with robots. People personalize their space to make it more comfortable to work in; lock them in cold blank walls with everything ISO-standard, they won't be happy. Give an inch.

    Pink fonts in Monotype Corsiva on a light blue background makes it tough for me to troubleshoot.

    Remember who uses the computer day in and day out. Not you.

    Please reread that statement again and again when you feel like it's "Your Computer".

    It's not "Your Computer", either. I'm not saying you should let pirate software and porn run around the computers, but complaining when the people that use the things change the fonts and colors to something that will make them more comfortable is excessive. Would you complain if someone moved the chair in the company car?

  17. Re:Tip of the Week by ncc74656 · · Score: 2, Insightful
    It is a web borwsing platform. Just as desktop applications are built on an operating system, so are web sites built on browsers.

    Real websites are built to standards, not on browsers that occasionally take liberties with those standards.

    So one cannot expect that a web site will work in the same way on all browsers.

    Why not? A site that works fine in $BROWSER_X but is a mess in $BROWSER_Y is a pretty sh*tty website. I'm not claiming that a site will render identically between two browsers...compare Mozilla for Win32 and Mozilla for Linux (the latter tends to choose font sizes that are too small). However, identical rendering isn't even the stated goal of HTML. (It's somewhat addressed by CSS, but even there you should expect some variability.) It is not at all unreasonable to expect a website to be functional when accessed with any browser. The path you'd take would only lead to further balkanization of the Web.

    --
    20 January 2017: the End of an Error.
  18. Re:Question... by SlashdotLemming · · Score: 4, Insightful

    So let me get this straight, the "end user" sitting in front of the machine 99% of the time should use the personal preferences of the grumpy SA. Makes sense. I hope those idiots keep their chairs at the proper height for you too. I mean, you need to be able to do *YOUR* job without distraction.

    A genius in a sea of stupidity. How do you deal with it?

  19. Don't ignore the question by frankie · · Score: 4, Insightful
    * Install everything but Quality Feedback Agent
    * Disable Javascript and Plugins for Mail & News
    * Create an additional shortcut on the desktop and in quicklaunch that uses chrome/icons/mailnew.ico as it's source and points to 'mozilla.exe -mail'
    I would use its leaner & meaner cousin, Phoenix

    Knee, meet Jerk. Jerk, meet Knee. Apparently neither Vallon nor his 3 or 4 moderators bothered to read the freaking question. The IT guy specifically wants to use the mail client as well as the browser, and probably NNTP too.

    Just because Phoenix is small and 1337 doesn't mean it's the answer to world peace, minty fresh breath, or every question that contains the word "Mozilla".

  20. Re:Question... by Bake · · Score: 4, Insightful

    Do you put a picture of the family on your desk?
    Now why would you do that? The desk is not for your personal use, it's the property of the company, if you didn't pay for it, it ain't yours.

    Do you fiddle with the settings on your office chair?
    Now why would you do that? The chair is not for your personal use, it's the property of the company. It isn't any of the company's business what settings on the chair are most comfortable for you. Personalisation does not benefit the company.

    I wish more end users would remember that.

    (</sarcastic-rant> for those who need it)

    The computer, just like any other accessory you use in your workplace must allow for some personalisation.
    As an IT drone, it is not your job to dictate what background picture/colour I have. If having BIG white letters on a black background increases my productivity, you, on behalf of the company, should be happy, even though it means you'll get to spend a few more minutes with me in the event that I need some help.

    Dispite what you may have read when reading the BOFH archives, the system administrator should NOT get to dictate every single detail about the computing environment in the workplace.

  21. Win32 architecture solution... by MoThugz · · Score: 3, Interesting

    Being the M$ lowlife that I am, I can only recommend something for your rollout on Windows-based clients.

    I recommend using InstallRite by Epsilon Squared Inc. to automate installation of any application on multiple PCs with different hardware and software configurations.

    It's easy to use and the documentation is good, IMHO. A big plus is that it is Freeware. Checking it out might be beneficial to you.

  22. Re:Tip of the Week by rseuhs · · Score: 2, Insightful
    Essentially your (modded as insightful - shrug) post sais: "Use IE because it is from Microsoft"

    No other reasons are given.

    The FACT that applying the constant flow of security patches for IE is way harder and time consuming than using Mozilla doesn't seem important for you. IE is from Microsoft, go with IE. That's all what seems to matter to you.

    Also IE being integrated in Windows is kinda problematic. IE updates may affect the rest of the system - Mozilla is independent from Windows, therefore much better to control and maintain. On top of that, you can EASILY have as many different Mozilla installations on your PC. (which can be useful on upgrading - if you don't want to take any risks just add the new version instead of replacing the old version). Also you can also downgrade Mozilla, but last time I checked, the only way to downgrade IE is to reinstall Windows... Mozilla is easier to integrate and support than IE and upgrading is much safer.

    And most importantly, Mozilla does not chain you to a vendor. Microsoft may raise license prices anytime - again. It happened before, it can happen again.

  23. Stick with Moz not Phoenix by Anonymous Coward · · Score: 4, Informative

    Phoenix development has died. Hyatt is now working on Safaria full time(he couldn't be happier), Blake(high schooler busy with getting ready for college) is MIA and Asa as usual doesn't comment on such things even when they seem grim. It looks like Phoenix as a project is dying/dead. No work has been done on Phoenix since December, and a critical bug has prevented anyone from using themes/extensions with new nightly versions since 12/28. This most basic bug pretty much shows the state of the project and how the developers involved have either a)lost interest or b) simply moved on. I know Blake had talked how eventually even he would get bored and move on(let any dev would), but it would have been nice if he had at least given some sort of warning.

    Also the Mozilla development staff has been axed as well, so it too has slowed down at a very critical time when there have been a ton of regressions.

    I'm a big fan of Mozilla(its all I use), so I hate to say these things which some people will undoubtably call FUD. But its not FUD and if you follow the project closely you'll know I'm not making this stuff up. Right now Mozilla is going through a very tough time and I really hope some new blood can come in to save it.

    You'll excuse me for being a coward and not signing my name, but sorry that the way this has to be.

  24. *These machines are not for your display of power* by Kjella · · Score: 4, Insightful

    As an employee, it's not "your computer". It's the property of the company. I wish more end users would remember that. "Why are you messing with *my* computer? I've got it just the way I like it!" Sorry. Pink fonts in Monotype Corsiva on a light blue background makes it tough for me to troubleshoot. Don't put your kid's picture up as wallpaper (less of a gripe, I don't really care, but give an inch...). Don't install the "little program" you brought from home.

    Those machines are also not there for the IT staff to use for some kind of power trip. Those machines are there to provide value to the company, which they presumably do when the users are working on them, not you. If the customizations they do make them work more effectively (translation: more motivated), that is good for the company. Certainly if they install viruses and stuff that creates trouble you need to take action, but the whining about text and background images is pathetic.

    Somehow I thought that kind of tayloristic management (your desktop will show in 0.04 seconds faster if you don't have a background image) became almost extinct long ago. If you treat people like machines, they also react very cynical - and do as little work as possible without getting fired. Since there's an economic downturn I guess people will stick around - but if all your best men leave when it starts going up, I can't say I'm surprised. I wouldn't want to stick around at least...

    Kjella

    --
    Live today, because you never know what tomorrow brings
  25. Good point! by iamacat · · Score: 4, Funny
    As an employee, it's not your network. I wish more system administrators would remember that. "Why are you messing with *my* data center? I've got it just the way I like it". Sorry. SSH and VNC are SECURITY HOLES. Any HACKER can DOWNLOAD the source code ON THE INTERNET and BREAK IN. Microsoft spent millions of dollars and countless man-hours designing remote administation tools. Just keep a cart with a keyboard and monitor, connect it to the server in the rack that stops responding and click Ok on that message box. Also, If I find any non-approved scripting language like Perl, it (and you) are gone. Microsoft already has batch files and you have no reason to muck around.



    What, you just said you are going to use Mozilla? You will trust our company security to some FREEWARE when Microsoft has made security the company's first priority for the whole year??? Right here I have a resume of a Visual Basic programmer who wants to migrate our e-commerce server to IIS, SQL server and server-side VBSCript, using Microsoft passport security architecture. I think I would give him a call. Certainly PROPRIETORY SOFTWARE is better than all the FREE-WARE you installed on our network...

  26. Re:Lockout users by chundo · · Score: 3, Insightful

    I believe the poster is referring to changing options in the installation process, not the application itself. As a system administrator, I can definitely see the advantage of forcing the user to install the default options I have chosen.

    Obviously you can't prevent the user from changing preferences in the browser after it is installed (nor would you want to), but starting with a common baseline for all users simplifies support concerns immensely.

  27. Wrong suggestion... by OnlyRB · · Score: 2, Insightful
    ... considering what the submitter wants:
    • Stability for a production environment, which Moz 1.2.1 has. Phoenix is still alpha, and not very actively developed at the moment. Seems the developers have other things on their minds (safaris, schools ...)
    • He has a mixed environment. He may have architectures which Phoenix does not support (it is MS Windows and Linux/Intel only.)
    • All components, in particular Mail & News. Phoenix is browser only.
    Mozilla 1.2.1 seems a good choice to me, maybe 1.3a or a carefully chosen nightly could be considered.
  28. Ask Ben over a Beonex.com by BroadbandBradley · · Score: 3, Interesting

    Beonex is a consulting company working on this very issue. They have the start of roaming profile support working in mozilla, and create thier own browser Beonex communicator for this purpose.
    Check out this bug on bugzilla where the start of roaming profile code exists for your compiling and testing pleasure. roaming profile setup IMHO is the way to go if folks use at different machines at different times. Outside of what's in the works...for now, I'd manually configure one for each platform and copy the folder over. Several different XPI's can be rolled into one, but it does take some hacking skills.
    Later this year, Hopefully, roaming will be up and running in Mozilla and with that bwill likely come some nice deployment tools.

  29. Why do you need to do this? by Billly+Gates · · Score: 3, Insightful
    *Here comes the flames (gulp)

    If all your users use Windows then why do you need to switch them? I am using mozilla to type this and its a great browser but alot of websites send my "connection refused" errors because I do not use IE. It takes alot of man hours and hassle to upgrade all the users not to mention can cause complaints if your users recieve the same error messages that I do on a few sites.

    I know Microsoft is a bully and want to prevent users from switching since IE is free and comes standard with every computer, but there really is inertia that locks people in.

    You have to ask yourself time is it really worth it to switch them? And also what benefits will it bring to your organization.

    1. Re:Why do you need to do this? by mccrew · · Score: 3, Insightful
      Mozilla has never had a problem rendering any properly coded site for me. [Emphasis added]

      It always rubs me the wrong way when geeks here on slashdot argue how perfect the world would be if all the hack web authors wrote "properly coded" websites. It is just a undeniable reality that the web is chock full of wrongly-coded, badly-coded, intentionally-broken code, and it is important that any browser degrade gracefully under such circumstances[, at which Mozilla does a very respectable job].

      Sitting back in a chair and ruminating about "properly coded" sites is not an option.

      More on topic, I think that it is a huge mistake if the original poster forces his [ahem, non-standard] choice on the unsuspecting users. As IE is already installed on all Windows desktops already, and since all websites are written with IE as the target, he is setting himself up for a rude awakening.

      --
      Hey, Windows users, there is no such thing as "forward" slash, there is only slash and backslash.
    2. Re:Why do you need to do this? by buchanmilne · · Score: 3, Insightful

      Sitting back in a chair and ruminating about "properly coded" sites is not an option.

      Yeah, some people take the only option that will help reduce the number of non-standards-complian sites, and that's increasing the number of non-MS browsers. What are you doing about the situation?

      Our users like mozilla (after they have used it for a while and see how much better it is). Why should they have to use something else to access a website?

      More on topic, I think that it is a huge mistake if the original poster forces his [ahem, non-standard] choice on the unsuspecting users. As IE is already installed on all Windows desktops already, and since all websites are written with IE as the target, he is setting himself up for a rude awakening.

      How so? Since IE is *still* on the desktops, the users can use IE if they get to a site that sucks. And they can do the evangelisation.

      Remember that supporting IE has it's own headaches (security vulnerabilities go unfixed for months). It's the admin's choice what he wants to support, unless management has directed what to use, which normally isn't the case in small companies (since management doesn't know enough to choose).

  30. But.... by hswerdfe · · Score: 3, Funny

    No it is! My Computer....it tells me so.
    Just look in the "Top-Left" corner of the screen.

    You will find a picture of a computer and it says "My Computer".

    Therefor it is. My Computer!...

    --
    --meh--
  31. Re:Question... by DavittJPotter · · Score: 2, Insightful

    Feh. You're deliberately missing the point I attempted to make. What's very frustrating for most admins is the repeated visits to Ms. Jones machine because she insists on changing, deleting, or adding this to her machine. You can ask her, you can tell her, but you can't change it.

    I'm not advocating a total lockdown. But some simple constraints can enormously streamline admin time and user time - I've known many, many users who will spend hours mucking about with desktop colors/schemes, surfing for 'just that right' background image, etc. Yes, they should be fired for wasting time; if they stood around the water cooler that long they'd surely be noticed.

    I'd be interested in the feedback from admins who've worked at other LARGE corporations - I'm talking thousands of desktops here, not ten or twenty.

    --
    "If there's hope, it lies in the proles..."
  32. I'd do a centralized installation and use X by Trolling4Dollars · · Score: 2, Interesting

    Assuming you are a UNIX/Linux environment:

    Server-side:
    I would set up the needed configuration(s) on one server. Then I would set up a group of "Terminal Servers" that use NFS to mount the custom config(s) and needed binaries on the first server.

    Client-side:
    Set up all the clients to allow connections to display :0 from one of the "Terminal Servers". Set up ssh with authorization keys to avoid the need for passwords, then use ssh to remotely execute Mozilla:

    ssh "mozilla --display=client-ip:0"

    This command could be set up as an icon on the gnome-panel so the user only needs to click on a button to launch Mozilla.

    Just a few ideas anyway...

    1. Re:I'd do a centralized installation and use X by BlueUnderwear · · Score: 2, Informative
      In the LLL project, we started out like this: netscape running on one of 3 "compute servers" (running Linux), displayed on the client workstations (running Windows) using the low-cost xwin32 servers.

      However, eventually we gave up on this setup due to bandwidth considerations: it takes a much higher bandwidth to send X commands (containing uncompressed bitmaps) over the network, than it does to send html, gifs and jpegs. So, eventually, we moved to a solution where the browser runs natively on Windows (first netscape, now mozilla), and the Linux box does only the squid caching (for better usage of our WAN connectivity) and file serving (for roaming profiles).

      (Of course, the Linux box does lots of other stuff as well (print serving, web server, firewall, user administration, udpcast server, ...), but these are unrelated to the browser issue that we are discussing here ;-) )

      --
      Say no to software patents.
  33. Re:Question... by blixel · · Score: 2, Insightful

    Based on your comments and by glancing over your resume I can tell your job involves a lot of hand holding and baby sitting. (I'm not being derogatory.) So if you work at some call center or something and have to support a bunch of relatively uneducated employees such as high school kids and mothers who got sick of staying at home, then I can see your point. When I made my original comment, I was thinking more along of the lines of competent end users. That is the work environment I'm most familiar with. As such, I really don't want (or need) someone changing my personal Desktop environment back to some "IT friendly" Microsoft default setting.

  34. cfengine? by wayland · · Score: 2, Informative

    I'd be using cfengine (or something similar) to manage something that size. cfengine claims to be able to deal with Windows NT as well as Unix. I only discovered it a few months ago, so I'm still in the planning stages for our network (which is all Unix anyway), but hopefully something like that will be useful.

    http://pikt.uchicago.edu/pikt/other.html

    Then again, cfengine might take a while to roll out :).

  35. Only on Slashdot... by jmagar.com · · Score: 3, Insightful

    The question has interesting aspects where it relates to software management on the desktop. But it falls terribly short on reason. Why would you replace the user's prefered browser with your idea of what is right? Some may already have Moz on the desk, but I bet most will hate you for replacing IE. Have you nothing better to do than push out a browser (and IMHO a bad one) to the desktop? Surely there are more pressing issues for your IT shop to address.

    1. Re:Only on Slashdot... by cornice · · Score: 2, Interesting

      It's all about security. I let my boss know whenever a major security patch came out for IE or Outlook. I then let him know whenever a major worm made headlines. Sure we have scanners and sure we catch just about everything (that we know of) but you would be amazed at how creative users can be. I think my boss saw one too many private e-mails or Word docs sent by worms. Anyway, after a while I was required to switch. Users can use IE but are asked to use it only for specific tasks. Sure we have exposure using Mozilla but it's not wide open by default.

  36. typical by g4dget · · Score: 3, Insightful
    What you want to do is use something like Microsoft Systems Management Server, [microsoft.com] Veritas WinInstall, [ondemandsoftware.com] or Novell ZenWorks SnAPPShot [novell.com]

    This is pretty typical: in order to get even the simplest task done on Windows, the usual answer is: get another software package.

    the money you spend will save you $$$ in man-hours trying

    First, you are going to spend many man hours getting your manager to approve the purchase and order the applications. Then you are going to spend many more man hours installing them. Then you are going to spend many man hours trying to figure them out. Then you are going to spend even more man hours fiddling around with them trying to package up Mozilla. Then, you still need to figure out how to get the packages themselves or the client packages for those packages onto the clients. Then, if everything goes really well, you may be ready to install the software.

    And when some major software upgrade comes from Microsoft or these vendors, you can start pretty much from square one.

    That's of course assuming that those packages are completely bug free. More than likely, they will interact in some unknown way with some other software package and mess up something or other.

    hackneyed, crappy homebrew solution in the long run

    Professional chefs use a couple of knives to get the job done: they are reliable, predictable, simple, and efficient. Amateurs run out and buy every kitchen appliance under the sun, hoping to compensate with appliances for skills that they lack. It's no different with system management: if you don't know what you are doing, your answer is going to be: "oh, just buy another piece of software".

    Windows, unfortunately, doesn't ship with any knives, but with Cygwin and Perl, you can get by. System management on Windows still like preparing a banquet in a kitchenette, but you don't need to make the effort even harder by stuffing the kitchenette full with useless junk.

  37. Re:Don't use Mozilla by zilly · · Score: 2, Funny

    What's so lazy about demanding convenience? After all, your computer's there to serve you, not the other way around.* Sometimes it's the attention to details like this URL shortcut that matters the most.

    * Unless you're in Soviet Russia, I hear.

  38. It needs registry for Quicklaunch and dflt browser by BlueUnderwear · · Score: 5, Informative
    There is one thing where Mozilla does need the registry, namely quicklaunch mode. Quicklaunch mode is quite handy if you have impatient users: this launches all lengthy startup stuff in the background as soon as you log in to your workstation. When you then click on the Mozilla icon, Mozilla is there in under a second. Here is the required registry entry (in regedit format, just put this into a .reg file, and load it using regedit -s)

    REGEDIT4

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\Curr entVersion\Run]
    "Mozilla Quick Launch"="\"C:\\PROGRA~1\\MOZILLA.ORG\\MOZILLA\\MOZ ILLA.EXE\" -turbo"

    Other registry entries might be necessary to set Mozilla as the default browser.

    Other handy tips for mozilla configuration (such as locked config items, automatically generated personal config, etc) can be found at http://www.alain.knaff.lu/howto/MozillaCustomizati on/

    This is used in the schools participating in the LLL project.

    Some Highlights:

    • Any configuration options accessible in prefs.js can be stored in a locate mozilla.cfg file (optionnally locked in such a way that it can no longer be overridden by the user):
      • Disable 'Open Unrequested Windows' (kill pop-ups),
      • Enable HTTP Pipelining,
      • Set toolbar to 'Pictures only',
      • Set Home Page to my organization's intranet site,
      • Set start page to 'Blank page',
      • Enable Middle-click for new tab,
      • Enable control+enter for new tab,
      • Default downloads to 'open a progress dialog',
      • Disable Javascript and Plugins for Mail & News
    • Using mozilla's own registry (%USERPROFILE%\Application Data\Mozilla\registry.dat) set the profile directory (which contains prefs.js et al.) to be on the user's home directory (H:\). That way, you can have a personalized configuration (Mail & News) automatically created by a script. When the user first logs in, he doesn't need to set his email address, server name, etc for using Mail & News, everything is already done for him!
    • Disabling of the bulky XUL.mfl file (whose sizes quickly add up if you have thousands of users): just create a directory named XUL.mfl, and Mozilla will be unable to create that file, and it will still work correctly!
    • Automatical loading of the needed registry entries as soon as user logs in, using a netlogon script
    At LLL, we deploy our machines using Udpcast, which might not be appropriate in your case (all your machines are different), but as other posters have pointed out, most of the client-side installation options can also be handled by a Zipfile plus a small install script to put stuff into the correct place.
    --
    Say no to software patents.
  39. Re:My Environment vs My Computer by h8macs · · Score: 3, Insightful

    An admin will develop a sort of possessiveness with their network. You may feel that you as a user spend more time with the computer than an admin, or in most cases recently, "the admin". Most users have no idea and can't comprehend the time that we actually spend working on the computers and networks.

    Even if we aren't working over night rolling out a new hosting server. If we are not cabling the building over the weekend. We still vigilantly carry a pager or some other device that gets computer and network monitoring alerts.

    You'd be shocked to know what some of the most inept computer doods know and can do.

    And one other thing, they (Systems Administrators, Database Administrators, Datacenter Techs, NOC Monitors ... and many other IT people you DON'T see) don't usually get thanks. Users tend to grumble that though they need help, the admin is causing them an inconvenience by showing up to help!

    Not our computers!? Well no, we don't own the company. Or do we!? We control every little tid-bit of data, if we don't than we are not doing our jobs. Its not just a job its a passion, and we do it well or we wouldn't still be helping our clients the users.

    Companies like our bodies don't function correctly if something is missing. In this analogy the sales department are the hands extending out. Marketing would be the mouth showing our perly whites. R&D obviously the brain.

    But where should we put IT, (using IT as an all encompassing term) I would have to say that IT makes up the nervous system (and spread the term back out as you see fit). I guess it's natural to have a few free radicals running around messing with your settings on your corporate workstation. And we haven't even mentioned the user/security issues.

    Perhaps you'd like to take a field day (cross matrix training thingie) and be a SysAdmins sounding board. He can ask you questions and you can give him the answers to all his problems!?

    My rant for the evening.

    Have you thanked your Systems Administrator lately!?

    --
    :-( --- argh. Despair, I owe again. :-b
  40. Re:Doing it with my friend's Mom.. by Malcontent · · Score: 2, Interesting

    "Second, I am not a Mozilla developer, so that won't be happening anytime soon"

    You don't have to be a mozilla developer. Writing install scripts, javascript, or xul is pretty easy for just about anybody. Hell even if you simply documented what to do it would be a HUGE help.

    "Modifications to the source *should* be made/will likely be required. "

    Once again this is not true. There are many posts on this subject now which explain what needs to get done and none of them require source changes.

    "MacOSX already handles users and seperating settings between users - it follows that Mozilla should use these more refined more standard methods rather than invent their own."

    I am going to try a few experiments but I bet I can even use a centralized install of mozilla. Just install it in one place and have multiple users use it.

    --

    War is necrophilia.

  41. Standard Customized Profile by gurubert · · Score: 2, Interesting

    We are currently deploying Mozilla 1.2.1 to our employees using a standard profile template filled with user specific values read from our LDAP system. This takes the hassle of configuration away from the user at the desktops and guarantees that he has a working profile the first time he launches Mozilla.

    We had to manually edit the registry.dat file of the default Mozilla installation to point to the preconfigured profile in the user's home directory (drive H: on windows). We basically eliminated the random string in the profile path which is included for "security reasons" but makes automated profile generation very hard.

    No we have a neat little script doing an sed over the profile template. With that we are able to generate user profiles in a second.

    The binaries are distributed using "PC Updater", a package tool for windows. The packages includes the modified registry.dat file in c:\windows\application data\mozilla for win98. For W2K we put this registry.dat file into the user's roaming profile directory "application data\mozilla".

    --
    "Is it friday yet?"
  42. How about NSIS? by smcv · · Score: 2, Informative

    The Nullsoft Scriptable Install System is the open-source installer developed for Winamp. (Yes, I know Winamp is closed, but the installer it uses is under the zlib license).

  43. Re:Question... by kperrier · · Score: 2, Insightful

    I'm not advocating a total lockdown. But some simple constraints can enormously streamline admin time and user time - I've known many, many users who will spend hours mucking about with desktop colors/schemes, surfing for 'just that right' background image, etc. Yes, they should be fired for wasting time; if they stood around the water cooler that long they'd surely be noticed.

    I'd be interested in the feedback from admins who've worked at other LARGE corporations - I'm talking thousands of desktops here, not ten or twenty.


    I worked for Chase Bank a couple of years ago. We are talking about 50,000 desktops world wide. They were all the same and they all were locked down so the end user could not install software. They could set the wall paper to what they wanted, and play with the fonts, but, if I remember correctly, the end user could not get to the Appearance tab to change how things looked, or activate "Active Desktop" or change desktop icons, or mess with the monitor resolution.

    I have also worked for Amoco, before they merged with BP, and they were the same way. There was a standard desktop image and you could not change it. (Of course there are exceptions. If you are high enough on the org chart, the rules were bent/broken. Also if you were a friend of the admins, or were known to have a clue and not to call the admins unless there was a real problem that the clueful user could not fix.)

    The point is that, in most large companies, there is a standard desktop image and the end users are locked out of most options to change/install anything on the computer. The arguement that "its their environment, they have the right to make it as productive as possible" doesn't hold water when the new Dancing Baby screen saver comes out, and 5 (or 50 or 500 or 5000, etc) users download it, install it and it proceeds to crash their computer every 5 minutes. The added cost to the help desk to tell the (l)users to reboot and reimaging the machine because "uninstalling" the screen saver (this is an example, it could be any software) does not fix the problem, is huge.

    It is much easier for companies to take this approach up front when the user base is small then come in later, when the desktop count has grown from 10 to 50, and impose it after the fact. Have you tried to take root away from a developer after he/she has had it for months or years when you have been brought in to fix a problem? Once the genie is out of the bottle, you can stuff it back in, but you had better have the intestional fortitude, and the political pull, for the fight. It will be a long and hard one.

    Kent

  44. Re:Lockout users by bryhhh · · Score: 2, Informative
    I've recently done this on our windows network, actually it was using phoenix not mozilla, but the procedure should work for mozilla just as well.

    First thing to do is to fire up Mozilla and configure it how you want it to work on your network. Now look in your profile and take a copy of the file 'pref.js' and the file 'localstore.rdf'. Now put these files somewhere safe.

    Take a clean machine (fresh install) and repackage Mozilla using WinInstallLE (This can be found on the Windows 2000 CD). Take your prefs.js and localstore.rdf file from before and add them into the package you have just created, ensure they are placed somewhere sensible like %PROGRAMFILES%\mozilla and rename them to something like 'default.js' and 'default.rdf' to prevent confusion with the original files. Ensure you configure your filesystem security so that people who shouldn't be able to change this files that will affect all users, can't.

    To deploy the application, you might want to use SMS or maybe Active Directory group policy, but it doesn't stop there. For each user to have your configuration you need to ensure that when a mozilla profile is created for a user that their 'pref.js' and 'localstore.rdf' files are the same as the ones you made earlier, this can be done using a logon script. Here is the logon script that I use.
    if exist "%USERPROFILE%\Application Data\Phoenix\Profiles\Default\*.slt" goto setprefs

    rem If we get here, then no profile for Phoenix exists, so lets create one

    "%PROGRAMFILES%\Phoenix\phoenix.exe" -CreateProfile default

    :setprefs

    rem Now we need to create (or recreate) the prefs file.

    c:
    cd "%USERPROFILE%\Application Data\Phoenix\Profiles\default\*.slt"

    rem Configure Toolbars
    copy "%PROGRAMFILES%\Phoenix\default.rdf" .\localstore.rdf /y >NUL

    rem Configure everything else
    copy "%PROGRAMFILES%\Phoenix\default.js" .\prefs.js /y >NUL

    rem All Done.


    This won't prevent users from changing settings, but you can easily do this by modifying your pref.js file. For LOTS more information about doing this try this 111 pages of useful information