I am trying to create an install package for IE 11 using SCCM 2012. IE uninstalls when I set deployment settings purpose as Available, but not when I set the deployment settings purpose as Required. When I set it as Available I am able to manually uninstall it using Software Center. My goal is to have the setting, set to required so that the uninstall can happen without user interaction.
My batch file has the following:
FORFILES /P %WINDIR%\servicing\Packages /M Microsoft-Windows-InternetExplorer-*11.*.mum /c "cmd /c echo Uninstalling package @fname && start /w pkgmgr /up:@fname /quiet /norestart
Thanks