20 February 2018

Mozilla Firefox Installer and Uninstaller

As we all know, Mozilla Firefox is not the easiest application to deal with when it comes to deploying it in an enterprise environment. I have finally taken the time to write a PowerShell script that will install it using the executable provided by Mozilla.

This installer will kill all instances of firefox, execute the uninstaller helper file, and then delete the programdata folder. Next, it will run the Firefox installer, create the autoconfig file and the Mozilla config file. The autoconfig.js file will point firefox to the mozilla.js file. I have written the script, so it creates and injects the configuration information within the CFG files. If you do not want this, you can comment out the New-AutoConfigFile and New-MozillaConfig lines. I also created a Configuration.ini file to configure the desktop shortcut during the installation.

Also, we still have some 32-bit machines, so I set up the script and file structure as shown below with the individual executable in the appropriate architecture folder.


Here are the links to the GitHub site:

Related Posts:

  • SCCM: SMS equivalent to updating the distribution point In SMS, in order to update the distribution point, you go to the packages and select the distribution points, and click update distribution points. The equivalent in SCCM is to go to the Software Library-->Application… Read More
  • SCCM: SMS Functions missing in SCCM As you have seen, a lot of the functions in SMS are now longer there in SCCM. For instance, you used to be able to re-run and advertisement on a specific machine. That is no longer there. There is a way to get the functions … Read More
  • Powershell: WMIC Product headers If you are trying to query a list of installed applications using WMIC and want to only display certain headers, here is the list of header available: wmic product get <header> Node AssignmentType Caption Descriptio… Read More
  • How to run a Powershell script as administrator Say you are deploying a package and need to run it as admin with elevated privileges. Of course if you are running the script manually, you can open up powershell with admin priviledges by running the cmd.exe as admini… Read More
  • SCCM: How to update packages on the distribution point There are two ways to update a package on the distribution point: Open up the Application package under Software Library and select the Content Locations tab. Now select the distribution point and click Redistribute. Selec… Read More

0 comments:

Post a Comment