Hey Joel, yes I am and I figured out my issue. When using /INI, you can't ALSO 
use the "-ms" silent switch. /INI already tells the executable to run in silent 
mode so it ends up being a faulty command line syntax to have both. Works like 
a charm now! In case anybody needs it, here is the syntax of my SCCM batch file 
that removes all other versions of Firefox:

@echo off

taskkill.exe /f /im firefox.exe > nul

IF EXIST "%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe" 
"%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe" -ms
IF EXIST "%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe" 
"%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe" -ms
IF EXIST "%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe" 
"%ProgramFiles%\Mozilla Firefox\uninstall\helper.exe" /s
IF EXIST "%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe" 
"%ProgramFiles(x86)%\Mozilla Firefox\uninstall\helper.exe" /s

"%~dp0Firefox Setup 52.1.2esr.exe" /INI=%~dp0%override.ini

if exist "C:\Program Files\Mozilla Firefox\" copy /Y "%~dp0override.ini" 
"C:\Program Files\Mozilla Firefox\browser\"
if exist "C:\Program Files\Mozilla Firefox\" copy /Y "%~dp0mozilla.cfg" 
"C:\Program Files\Mozilla Firefox\"
if exist "C:\Program Files\Mozilla Firefox\" copy /Y "%~dp0local-settings.js" 
"C:\Program Files\Mozilla Firefox\defaults\pref"

This would actually remove any version installed, but I use a detection clause 
in my SCCM deployment that checks for the specific version I want to either 
have installed from the deployment or left installed if already present.


Thanks to you and to Andrew for the reply!! Let me know if anyone needs 
assistance on the SCCM packaging portions of this.


Robert Ferguson
SCCM Engineer
954-850-4762

From: Enterprise [mailto:[email protected]] On Behalf Of Joel 
Baltazor
Sent: Wednesday, May 31, 2017 2:19 PM
To: [email protected]
Subject: [Possible Spam Message] Re: [Mozilla Enterprise] Firefox 52 ESR 
Disable desktop Shortcut
Importance: Low

Hi Robert,
Are you using:
DesktopShortcut=false
in your .ini per https://wiki.mozilla.org/Installer:Command_Line_Arguments ?

-Joel

On 5/30/2017 2:37 PM, Robert Ferguson [C] wrote:
I am trying to deploy the application and reference the .ini file to not have 
the desktop shortcut but I can't get it to work. Can you provide assistance 
please? Thank you.

Robert Ferguson
SCCM Engineer
954-850-4762

CONFIDENTIALITY NOTICE: The information transmitted is intended only for the 
person or entity to which it is addressed and may contain confidential and/or 
privileged material. Any review, retransmission, dissemination or other use of, 
or taking of any action in reliance upon, this information by persons or 
entities other than the intended recipient is prohibited. If you received this 
in error, please delete the material from any computer.



_______________________________________________

Enterprise mailing list

[email protected]<mailto:[email protected]>

https://protect-us.mimecast.com/s/GWg3BbSnl4ps3<https://mail.mozilla.org/listinfo/enterprise>



To unsubscribe from this list, please visit 
https://protect-us.mimecast.com/s/GWg3BbSnl4ps3<https://mail.mozilla.org/listinfo/enterprise>
 or send an email to 
[email protected]<mailto:[email protected]> with a 
subject of "unsubscribe"

CONFIDENTIALITY NOTICE: The information transmitted is intended only for the 
person or entity to which it is addressed and may contain confidential and/or 
privileged material. Any review, retransmission, dissemination or other use of, 
or taking of any action in reliance upon, this information by persons or 
entities other than the intended recipient is prohibited. If you received this 
in error, please delete the material from any computer.
_______________________________________________
Enterprise mailing list
[email protected]
https://mail.mozilla.org/listinfo/enterprise

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

Reply via email to