Hello community. I would like to create a GPO startup script to silently uninstall every bit of MSXML 4.0 SP2 and SP3 from user computers (windows 7 Pro) in one startup script. Is this possible? The following discussion helped me understand the CMD tools I probably need to use (msiexec.exe), but is it possible to make a script to uninstall multiple software in one startup script?
http://community.spiceworks.com/topic/191014-removing-non-gpo-installed-applications-via-gpo
I've tried and failed. :) For example I have the following in my script
MsiExec.exe /x {716E0306-8318-4364-8B8F-0CC4E9376BAC} /qn && MsiExec.exe /x {A9CF9052-F4A0-475D-A00F-A8388C62DD63} /qn It doesn't work. MSXML 4 remains installed on the computer. Is it correct to use the "&&" to execute multiple commands in one line? Is that the approach to take? Also, I would like...