<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://communities.bentley.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Uninstall all previous versions of projectwise?</title><link>https://communities.bentley.com/products/administration/f/product-administration-forum/114483/uninstall-all-previous-versions-of-projectwise</link><description>Within my company there are many computers who have gotten behind on bentley updates. In order to get everyone upgraded to the newest releases, I was wondering if there is an uninstaller script or .exe that will remove any previous version of projectwise</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Uninstall all previous versions of projectwise?</title><link>https://communities.bentley.com/thread/356047?ContentTypeID=1</link><pubDate>Thu, 11 Feb 2016 13:32:12 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:395a170d-236a-4748-8630-2e90bc8f4879</guid><dc:creator>Jeremy</dc:creator><description>I discovered a very easy way to uninstall any version of projectwise. Since the .exe&amp;#39;s are just calling a bunch of .msi installers, all of the uninstall strings are located on the computer and realatively easy to find with powershell. The script I wrote is:&lt;br /&gt;
&lt;br /&gt;
$programs = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -like &amp;quot;Projectwise *&amp;quot; -or $_.Vendor -like &amp;quot;Bentley *&amp;quot; }&lt;br /&gt;
foreach($program in $programs){&lt;br /&gt;
$program.Uninstall()&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
This iterates over the list of found installed programs that match the search conditions ( a name that starts with projectwise or a vendor that starts with bentley) and uninstalls them. This version will also uninstall microstation and most of the pre/post reqs that come with it. Hope this helps someone out there.&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Uninstall all previous versions of projectwise?</title><link>https://communities.bentley.com/thread/351775?ContentTypeID=1</link><pubDate>Wed, 06 Jan 2016 18:01:26 GMT</pubDate><guid isPermaLink="false">6dad98f5-dbc9-4c4d-a9ba-e9da8dc6aa8e:ab6e4b41-879c-4cdc-83e0-500f299434d6</guid><dc:creator>Melissa Hook</dc:creator><description>It is best to uninstall all products through program /features or add/remove programs ( depending on the OS).  Otherwise this is something that you would have to create we do not have a delivered script or exe .&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>