<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Howto: Uninstall Adobe Flash Player from the command line</title>
	<atom:link href="http://thebackroomtech.com/2008/06/12/howto-uninstall-adobe-flash-player-from-the-command-line/feed/" rel="self" type="application/rss+xml" />
	<link>http://thebackroomtech.com/2008/06/12/howto-uninstall-adobe-flash-player-from-the-command-line/</link>
	<description>serving up the info back room techs everywhere find interesting</description>
	<lastBuildDate>Thu, 19 Nov 2009 21:28:25 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: flash problems - Digital World</title>
		<link>http://thebackroomtech.com/2008/06/12/howto-uninstall-adobe-flash-player-from-the-command-line/#comment-2306</link>
		<dc:creator>flash problems - Digital World</dc:creator>
		<pubDate>Thu, 09 Apr 2009 23:27:38 +0000</pubDate>
		<guid isPermaLink="false">http://thebackroomtech.wordpress.com/?p=362#comment-2306</guid>
		<description>[...] sorry......  ----------------------------------------- 1. Download flash uninstaller from here: Howto: Uninstall Adobe Flash Player from the command line the back room tech (read instructions)  2. Close all browsers and applications that may use Flash Player.  3. Run the [...]</description>
		<content:encoded><![CDATA[<p>[...] sorry&#8230;&#8230;  &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; 1. Download flash uninstaller from here: Howto: Uninstall Adobe Flash Player from the command line the back room tech (read instructions)  2. Close all browsers and applications that may use Flash Player.  3. Run the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chris</title>
		<link>http://thebackroomtech.com/2008/06/12/howto-uninstall-adobe-flash-player-from-the-command-line/#comment-1533</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Sun, 22 Jun 2008 05:19:06 +0000</pubDate>
		<guid isPermaLink="false">http://thebackroomtech.wordpress.com/?p=362#comment-1533</guid>
		<description>Here&#039;s a script that I use in a GPO Startup Script.  I copied it from here: http://www.appdeploy.com/messageboards/tm.asp?m=27228

I don&#039;t know if the checks for Flash1, Flash2, etc are needed but I included them in the script anyway.  My updated script checks everything from Flash to Flash9f.

I just noticed that I&#039;m never calling the uninstall_activeX.exe  program.  I&#039;m also not doing anything with the GUIDs like Rob D. is in the previous post.  Research into these might be beneficial. In any case, I want to post my script in case it&#039;s helpful to someone.

The benefit of checking for each version is so no old version is left installed.  If, at any point during the script, an old version is detected, all versions are uninstalled and then the new version is (re)installed.

-----------------[ START HERE
:CHECKFLASHLEGACY
if exist &quot;%windir%\system32\Macromed\Flash\flash.ocx&quot; (goto DELETEFLASH) ELSE (goto CHECKFLASH1)

:CHECKFLASH1
if exist &quot;%windir%\system32\Macromed\Flash\flash1.ocx&quot; (goto DELETEFLASH) ELSE (goto CHECKFLASH2)

--- This goes on all the way to Flash8, 8a, 8b, 9, 9a - 9e ---

:CHECKFLASH9f
if exist &quot;%windir%\system32\Macromed\Flash\flash9f.ocx&quot; (goto EOF) ELSE (goto INSTALLFLASH)

:DELETEFLASH
REM This will remove ALL versions of Adobe Flash
echo Removing all versions of Adobe Flash
&quot;\\SERVER\SHARE\Applications\Adobe\Adobe Flash\uninstall_flash_player.exe&quot; /s

:INSTALLFLASH
REM this installs the latest version of Flash.
echo Installing the latest Adobe Flash Player, please wait...
msiexec /i &quot;\\SERVER\SHARE\Applications\Adobe\Adobe Flash\install_flash_player_active_x.msi&quot; /qn

:EOF
-----------------[ STOP HERE</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a script that I use in a GPO Startup Script.  I copied it from here: <a href="http://www.appdeploy.com/messageboards/tm.asp?m=27228" rel="nofollow">http://www.appdeploy.com/messageboards/tm.asp?m=27228</a></p>
<p>I don&#8217;t know if the checks for Flash1, Flash2, etc are needed but I included them in the script anyway.  My updated script checks everything from Flash to Flash9f.</p>
<p>I just noticed that I&#8217;m never calling the uninstall_activeX.exe  program.  I&#8217;m also not doing anything with the GUIDs like Rob D. is in the previous post.  Research into these might be beneficial. In any case, I want to post my script in case it&#8217;s helpful to someone.</p>
<p>The benefit of checking for each version is so no old version is left installed.  If, at any point during the script, an old version is detected, all versions are uninstalled and then the new version is (re)installed.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;[ START HERE<br />
:CHECKFLASHLEGACY<br />
if exist &#8220;%windir%\system32\Macromed\Flash\flash.ocx&#8221; (goto DELETEFLASH) ELSE (goto CHECKFLASH1)</p>
<p>:CHECKFLASH1<br />
if exist &#8220;%windir%\system32\Macromed\Flash\flash1.ocx&#8221; (goto DELETEFLASH) ELSE (goto CHECKFLASH2)</p>
<p>&#8212; This goes on all the way to Flash8, 8a, 8b, 9, 9a &#8211; 9e &#8212;</p>
<p>:CHECKFLASH9f<br />
if exist &#8220;%windir%\system32\Macromed\Flash\flash9f.ocx&#8221; (goto EOF) ELSE (goto INSTALLFLASH)</p>
<p> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> ELETEFLASH<br />
REM This will remove ALL versions of Adobe Flash<br />
echo Removing all versions of Adobe Flash<br />
&#8220;\\SERVER\SHARE\Applications\Adobe\Adobe Flash\uninstall_flash_player.exe&#8221; /s</p>
<p>:INSTALLFLASH<br />
REM this installs the latest version of Flash.<br />
echo Installing the latest Adobe Flash Player, please wait&#8230;<br />
msiexec /i &#8220;\\SERVER\SHARE\Applications\Adobe\Adobe Flash\install_flash_player_active_x.msi&#8221; /qn</p>
<p>:EOF<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;[ STOP HERE</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://thebackroomtech.com/2008/06/12/howto-uninstall-adobe-flash-player-from-the-command-line/#comment-1521</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 18 Jun 2008 02:30:12 +0000</pubDate>
		<guid isPermaLink="false">http://thebackroomtech.wordpress.com/?p=362#comment-1521</guid>
		<description>Thanks for the tip, time to do some housecleaning!</description>
		<content:encoded><![CDATA[<p>Thanks for the tip, time to do some housecleaning!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob D.</title>
		<link>http://thebackroomtech.com/2008/06/12/howto-uninstall-adobe-flash-player-from-the-command-line/#comment-1516</link>
		<dc:creator>Rob D.</dc:creator>
		<pubDate>Fri, 13 Jun 2008 21:38:16 +0000</pubDate>
		<guid isPermaLink="false">http://thebackroomtech.wordpress.com/?p=362#comment-1516</guid>
		<description>I also cleanup the few versions of Flash 8 we used around here, using the GUID in a batch script (some lines wrap):

:: Macromedia Flash Player 8 	8.0.22.0	
MsiExec.exe /X {6815FCDD-401D-481E-BA88-31B4754C2B46} /qn /le+* c:\Flash8Removal.log
reg.exe DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{6815FCDD-401D-481E-BA88-31B4754C2B46} /f
:: Macromedia Flash Player 8	8.0.24.0	
MsiExec.exe /X {5E8A1B08-0FBD-4543-9646-F2C2D0D05750} /qn /le+* c:\Flash8Removal.log
reg.exe DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{5E8A1B08-0FBD-4543-9646-F2C2D0D05750} /f

BTW, I like your blog. Keep up the good work.

  -Rob</description>
		<content:encoded><![CDATA[<p>I also cleanup the few versions of Flash 8 we used around here, using the GUID in a batch script (some lines wrap):</p>
<p>:: Macromedia Flash Player 8 	8.0.22.0<br />
MsiExec.exe /X {6815FCDD-401D-481E-BA88-31B4754C2B46} /qn /le+* c:\Flash8Removal.log<br />
reg.exe DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{6815FCDD-401D-481E-BA88-31B4754C2B46} /f<br />
:: Macromedia Flash Player 8	8.0.24.0<br />
MsiExec.exe /X {5E8A1B08-0FBD-4543-9646-F2C2D0D05750} /qn /le+* c:\Flash8Removal.log<br />
reg.exe DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{5E8A1B08-0FBD-4543-9646-F2C2D0D05750} /f</p>
<p>BTW, I like your blog. Keep up the good work.</p>
<p>  -Rob</p>
]]></content:encoded>
	</item>
</channel>
</rss>
