I am working on a package for Internet Explorer 11.
So far I have just had a setup-script, but now I need a way to uninstall IE11.
I tried adding this command to a WinBatch_uninstall section, but it does'nt seem to work:
Code: Alles auswählen
wusa /uninstall /kb:2841134 /quiet /norestart
I then want to use this way of uninstall:
Code: Alles auswählen
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"
I think the best way would be to create a search that lists all packages that fulfill the search-requirement "Microsoft-Windows-Inter...*11.*.mum" and then run a loop for each package, which would uninstall it "start /w pkgmgr...".
Have anyone had any experience with this package or with creating such a loop?
Regards,
Soren