The other thing you could try is running it without the /qn switch on a test machine to see what's really happening during the uninstall, although Rainer's suggestion is probably the way to go for Office.<br><br><div class="gmail_quote">
2009/4/18 Rainer Meier <span dir="ltr"><<a href="mailto:r.meier@wpkg.org">r.meier@wpkg.org</a>></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hi "mattmole"<br>
<div><div></div><div class="h5"><br>
mattmole wrote:<br>
> I am attempting to uninstall Microsoft Office 2003. I have used the example<br>
> from <a href="http://wpkg.org" target="_blank">wpkg.org</a> to create my rule:<br>
><br>
> <package<br>
>     id="Office2003"<br>
>     name = "Install Office2003"<br>
>     reboot="true"<br>
>     ><br>
>       <!--<check type="file" condition="exists" path="C:\Program Files\Microsoft<br>
> Office\OFFICE11\WINWORD.EXE"/>--><br>
>       <check type="uninstall" condition="exists" path="Microsoft Office<br>
> Professional Edition 2003"/><br>
>       <install<br>
> cmd='\\10.240.250.246\packages\package_files\office\MSOffice2003\v1.0.0.1\SETUP.EXE'/><br>
>       <!--<remove  cmd='msiexec /x<br>
> "\\10.240.250.246\packages\package_files\office\MSOffice2003\v1.0.0.1\PRO11.msi"<br>
> /qn' />--><br>
>       <remove cmd='MsiExec.exe /q /x{90110409-6000-11D3-8CFE-0150048383C9}'/><br>
>     </package><br>
><br>
> As can be seen from the above, I have tried two check types and the error<br>
> returned is the same:<br>
><br>
> "<br>
> Could not process (remove) "Install Office 2003"<br>
> Package still installed<br>
> "<br>
><br>
> This is very interesting as by running either uninstall command manually I<br>
> find that Office 2003 does successfully uninstall.<br>
><br>
> Any ideas?<br>
<br>
</div></div>Try running it within a command line call:<br>
cmd /c "msiexec /qn /x {90110409-6000-11D3-8CFE-0150048383C9}"<br>
<br>
Why don't you stick to the command using the MSI file - usually that works great.<br>
<br>
My personal command-line I use to uninstlal Office 2003 (works great):<br>
<br>
msiexec /x "%SOFTWARE%\office2003\PRO11.MSI" /qn<br>
<br>
br,<br>
<font color="#888888">Rainer<br>
</font><div><div></div><div class="h5"><br>
-------------------------------------------------------------------------<br>
wpkg-users mailing list archives >> <a href="http://lists.wpkg.org/pipermail/wpkg-users/" target="_blank">http://lists.wpkg.org/pipermail/wpkg-users/</a><br>
_______________________________________________<br>
wpkg-users mailing list<br>
<a href="mailto:wpkg-users@lists.wpkg.org">wpkg-users@lists.wpkg.org</a><br>
<a href="http://lists.wpkg.org/mailman/listinfo/wpkg-users" target="_blank">http://lists.wpkg.org/mailman/listinfo/wpkg-users</a><br>
</div></div></blockquote></div><br>